I'm trying to convert a 720p video to 576i using the following AVI Synth script:
AssumeTFF()
Lanczos4Resize(720,576)
SeparateFields.SelectEvery(4,1,2)
ConvertToYUY2()
Weave()
But this produces a slight problem: the source video in question consists of an "interlaced" part (i.e. every frame is different) and a "deinterlaced" part (i.e. only every other frame is different - the broadcaster does it to create a crappy fake-film effect).
So, surely, in the final 576i video the "deinterlaced" part should appear progressive...? Except it doesn't, it looks like the attached image.
I realise it should play back fine, but when the final product looks like the attached image a much higher bitrate is required due to the extra detail. So my question is how can I rewrite the script to avoid this?
![]()
+ Reply to Thread
Results 1 to 3 of 3
-
-
You are probably just out of phase on the "deinterlaced part". Ie, when you get to the deinterlaced part your sequence isn't:
1 1 2 2 3 3 4 4...
it's:
x 1 1 2 2 3 3 4 4...
Where x is one last frame from the earlier section. So your combining fields from the wrong pairs of frames. You have to break the video up into two parts with Trim(). -
You could do a field match without the default post processing to get the shifted fields part of it back in phase, something like:
TFM(PP=0)#from TIVTC
after the resize and reinterlace. That should make the progressive parts progressive again and leave the interlaced parts alone. I think.
Similar Threads
-
Help with 720p video to 576i DVD (Only 25fps?)
By Killer3737 in forum Video ConversionReplies: 9Last Post: 16th Jul 2011, 11:34 -
HDTV 720p 50 fps -> SDTV PAL 576i/p 25fps
By joosty in forum Video ConversionReplies: 22Last Post: 7th Nov 2010, 22:33 -
720p --> 576i
By genak in forum Newbie / General discussionsReplies: 10Last Post: 15th Aug 2010, 11:45 -
2 x 720p AVI with DTS - need 1 x 720p MKV with AC3
By snadge in forum Video ConversionReplies: 2Last Post: 25th Oct 2009, 12:38 -
UNDERWATER VIDEO - Should I get a still-cam with 720p, or a 720p camcorder?
By v1ru5 in forum Newbie / General discussionsReplies: 1Last Post: 25th Aug 2009, 02:49