Selur's Little Message Board
QTGMC VapourSynth bob option - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: QTGMC VapourSynth bob option (/thread-1595.html)



QTGMC VapourSynth bob option - retractOffer - 02.11.2020

Hello,
I am looking for the command line option that corresponds to the "Bob" option for QTGMC VapourSynth in Hybrid.

import havsfunc as haf
clip = haf.QTGMC(clip, Preset='Slower', TFF=True)
clip = <insert the bob option here>



RE: QTGMC VapourSynth bob option - Selur - 02.11.2020

QTGMC by default bobs so there is no additional script line for it.
Hybrid adds:
# make sure content is perceived as frame based
clip = core.std.SetFieldBased(clip, 0)
clip = clip[::2]
to only use half of the created frames, which makes it in a normal deinterlacer.

Cu Selur