23.02.2021, 05:29
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?
· 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?