ncahammer
20th December 2008, 17:27
I have a VFR avisynth script
I want to deinterlace the video parts, but not the film parts
For example after TDecimate(mode=5,....)
to have something like this
ConditionalFilter(MyDeinterlacer(), last, "IsVideo()", "=","true")
or
ConditionalFilter(MyDeinterlacer(), last, "frame_fps()", "=","29.970030")
PS. I did try the ConditionalFilter(MyDeinterlacer(), last, "IsCombedTIVTC(MI=7)", "=","true")
but I had to specify a very low MI value to deinterlace all video parts. Some film scenes incorrectly return a MIC value > 7 and the MyDeinterlacer() runs
I want to deinterlace the video parts, but not the film parts
For example after TDecimate(mode=5,....)
to have something like this
ConditionalFilter(MyDeinterlacer(), last, "IsVideo()", "=","true")
or
ConditionalFilter(MyDeinterlacer(), last, "frame_fps()", "=","29.970030")
PS. I did try the ConditionalFilter(MyDeinterlacer(), last, "IsCombedTIVTC(MI=7)", "=","true")
but I had to specify a very low MI value to deinterlace all video parts. Some film scenes incorrectly return a MIC value > 7 and the MyDeinterlacer() runs