Please help! I have a DivX/XviD AVI progressive (PAL 16:9) source and I'd like to convert it to DVD (PAL 16:9 again), but interlaced to make video more motion more smooth as video is to be watched on CRT TV (although avi source is prepared to be watched on LCD computer, captured and encoded from digital satellite tv).
I'm going to encode it using HCenc, so I need to prepare proper AVISynth script to produce smooth motion interlaced video. Please, help to write this script.
+ Reply to Thread
Results 1 to 12 of 12
-
-
Converting a progressive source to interlaced won't necessarily make playback smoother. What is the frame rate of your source?
-
Then interlaced encoding won't make it any smoother at all. If it was 50 fps you could pull one field out of each frame to make a nice 25i MPEG file.
Code:WhateverSource() #50 fps source SeparateFields() SelectEvery(4,0,3) Weave() #25 fps interlaced
http://forums.guru3d.com/showthread.php?t=288017
It works well for some types of material, not so well with others. -
Originally Posted by jagabo
Originally Posted by jagabo
P.S. video is football match, I can see on it that the ball flies far that it flies like "discreetly", not smoothly.
upd. No chance, this work extremely slow, tripling encoding time on my 2*3.0 GHz CPU... what about doing simply
Code:convertfps(50) SeparateFields() SelectEvery(4,0,3) Weave()
-
Originally Posted by lovyagin
Originally Posted by lovyagin -
Originally Posted by jagabo
Each frame will consist of half an original frame in one field and half a blended frame in the other. -
Originally Posted by Gavino
-
Thanks you again for suggestion... well, so I'll try to convertfps(50) and tell you result later.
-
I'm not recommending ConvertFPS(). Just pointing out what it does. I consider it a severe defect.
-
At last I've tried MVTools framerate doubler -> Selectevery(...).
In fact, I found that this method lefts some artefacts. For example, fast flying ball gly even a little more discreetly. Motion of big object over static background cause background 'following' it and borders become blending. But any way it really makes movie a little smoother and softer to watch saving my eyes.
Although it works a little slow, I will use it. Thanks you a lot again. -
Originally Posted by lovyagin
Similar Threads
-
Progressive Vs Interlaced?
By shagratt71 in forum Video ConversionReplies: 4Last Post: 26th Dec 2011, 09:22 -
Interlaced or progressive
By rank in forum Newbie / General discussionsReplies: 4Last Post: 3rd Jul 2010, 16:41 -
Interlaced source encoded as progressive?
By MagicSparky in forum Video ConversionReplies: 3Last Post: 19th Dec 2008, 17:30 -
X264 mkv result has a wider width than the source
By Ahmed28 in forum Newbie / General discussionsReplies: 2Last Post: 9th Nov 2008, 19:33 -
Convert Interlaced video to Progressive?
By ziggy1971 in forum Newbie / General discussionsReplies: 21Last Post: 20th Sep 2008, 19:33