Selur's Little Message Board

Full Version: QTGMC VapourSynth bob option
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
I am looking for the command line option that corresponds to the "Bob" option for QTGMC VapourSynth in Hybrid.

Code:
import havsfunc as haf
clip = haf.QTGMC(clip, Preset='Slower', TFF=True)
clip = <insert the bob option here>
QTGMC by default bobs so there is no additional script line for it.
Hybrid adds:
Code:
# 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