outhud
14th November 2020, 12:27
Few seconds video clip here https://www.dropbox.com/s/649guaf2vvie5x0/clip.mkv?dl=0 (5MB)
I'm working with the above source video from DVD. Not sure how to say for certain if this is telecined or not, but I assume so.
I've tried using different combinations of QTGMC, VFM and VDecimate to prepare it for encoding.
QTGMC removes interlacing but doesn't remove blending.
VFM and Vdecimate removes blending but leaves combing lines.
I've tried combining both, but I wonder is this really the best way. There are still frames that look blended, and maybe this is more quality loss than necessary.
video = haf.QTGMC(video, Preset='Slower', FPSDivisor=2, TFF=True)
video = core.vivtc.VFM(video, order=1, cthresh=10)
video = core.vivtc.VDecimate(video)
Any advice on how I should combine some or all of the above filters to get the clip suitable for encoding?
I'm working with the above source video from DVD. Not sure how to say for certain if this is telecined or not, but I assume so.
I've tried using different combinations of QTGMC, VFM and VDecimate to prepare it for encoding.
QTGMC removes interlacing but doesn't remove blending.
VFM and Vdecimate removes blending but leaves combing lines.
I've tried combining both, but I wonder is this really the best way. There are still frames that look blended, and maybe this is more quality loss than necessary.
video = haf.QTGMC(video, Preset='Slower', FPSDivisor=2, TFF=True)
video = core.vivtc.VFM(video, order=1, cthresh=10)
video = core.vivtc.VDecimate(video)
Any advice on how I should combine some or all of the above filters to get the clip suitable for encoding?