This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

QTGMC Vaporsynth settings
#1
Curious if this is correct:
·       Filtering> Deinterlace/Telecine> QTGMC Vapoursynth>Order>changing Input Order from default value “-1” to “1” that is explained as TFF:
 
Input order:
·       Select which field order the content has
·       -1 : from source headers (default).
·       0 : Bottom field first.
·       1 : Top field first.
·       Default: -1,Min: -1,Max: 1
 
I know that video is TFF, but not sure if my HuffYUV video file’s header has set that value, this is why I try to set Input Order manually.
 
Looking in to Vapoursynth Script:
# setting field order to what QTGMC should assume (top field first)
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=2)
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Fast", TFF=False) # new fps: 50
 
Does it mean that video will be interpreted not correctly, as BFF, since TTF=False?
 
Changing Input Order to “0” as it explained as BFF.
 
Looking in to Vapoursynth Script:
# setting field order to what QTGMC should assume (top field first)
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=2)
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Fast", TFF=True) # new fps: 50
 
Looks like it is recognized as TFF instead of BFF?
 
Changing Input Order back to default “-1”.
Vapoursynth Script:
# setting field order to what QTGMC should assume (top field first)
clip = core.std.SetFrameProp(clip=clip, prop="_FieldBased", intval=2)
# Deinterlacing using QTGMC
clip = havsfunc.QTGMC(Input=clip, Preset="Fast", TFF=True) # new fps: 50
 
Looks like it reads file's header and sets TFF.
 
 
Also how to change Sharpness value in QTGMC Deinterlacer, it is grayed out? Does not allow to change it.
I changed QTGMC Denoiser setting parameters under Filtering>Vapoursynth>DeNoise> QTGMC, changing Sharpness value.
Under Filtering> Deinterlace/Telecine> QTGMC Vapoursynth, Sharpness box is still unmarked, grayed out, value is default 1.0 and grayed out.
It means that QTGMC Denoiser setting parameters under DeNoise> QTGMC are taking setting over and are as set, even Sharpness value in QTGMC Deinterlacer is a default and not changed?
Reply


Messages In This Thread
QTGMC Vaporsynth settings - by Rokoko33 - 23.02.2021, 05:29
RE: QTGMC Vaporsynth settings - by Selur - 23.02.2021, 05:58
RE: QTGMC Vaporsynth settings - by Rokoko33 - 23.02.2021, 19:26
RE: QTGMC Vaporsynth settings - by Selur - 23.02.2021, 19:46
RE: QTGMC Vaporsynth settings - by Rokoko33 - 24.02.2021, 01:04
RE: QTGMC Vaporsynth settings - by Selur - 24.02.2021, 06:15

Forum Jump:


Users browsing this thread: 1 Guest(s)