View Single Post
Old 5th August 2017, 18:02   #2  |  Link
Gser
Registered User
 
Join Date: Apr 2008
Posts: 418
http://avisynth.nl/index.php/TIVTC/TFM
Just use TFM, it will join the progressive fields and deinterlace the combed frames, you can even use QTGMC as a deinterlacer like so
Quote:
deint=QTGMC( Preset="medium", FPSdivisor=2, lossless=2)
tfm(pp=4, slow=2, hint=false, clip2=deint)
Pay attention the pp setting. When using PP > 1 this parameter may be used to specify a clip to take deinterlaced frames from instead of using one of TFM's inbuilt deinterlacing methods. If PP < 5 then frames will be taken as is from clip2, if PP >= 5 (i.e. using motion adaptation) then TFM will build the mask as usual and only pixels in moving areas will be taken from the frames in clip2.
I use that script for a source that I know has mixed progressive and interlaced material but if I know a source is fully progressive but has a few combed frames here and there because of reasons, then I would set pp > 5. PS: Hint is set false because there is no need to produce hints for a decimation filter.
Gser is offline   Reply With Quote