Yesterday, 20:46
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_BOTTOM) # bff
# adjusting color space from YUV411P8 to YUV444P16 for vsQTGMC
clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P16, range_s="limited")
# Deinterlacing using QTGMC
clip = qtgmc.QTGMC(Input=clip, Preset="Fast", TFF=False, opencl=True) # new fps: 59.94
# Making sure content is preceived as frame based
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # progressive
# denoising using KNLMeansCL
clip = denoise.KNLMeansCL(clip=clip, d=0) # maybe increase strength form the default 1.2
# contrast sharpening using CAS
clip = core.cas.CAS(clip=clip, sharpness=0.700) # maybe lower sharpness to 0.5
# applying dehalo using YAHR
clip = dehalo.YAHR(clip, depth=16)
I can identify some presets but not all. Could I assume the first 4 you list are auto-handled in Hybrid once I set QTGMC presets? I note you select "fast". Would slower be beneficial to quality?
I can identify the last three presets. For KNLMeansCL d=0 - is this distance?
# adjusting color space from YUV411P8 to YUV444P16 for vsQTGMC
clip = core.resize.Bicubic(clip=clip, format=vs.YUV444P16, range_s="limited")
# Deinterlacing using QTGMC
clip = qtgmc.QTGMC(Input=clip, Preset="Fast", TFF=False, opencl=True) # new fps: 59.94
# Making sure content is preceived as frame based
clip = core.std.SetFrameProps(clip=clip, _FieldBased=vs.FIELD_PROGRESSIVE) # progressive
# denoising using KNLMeansCL
clip = denoise.KNLMeansCL(clip=clip, d=0) # maybe increase strength form the default 1.2
# contrast sharpening using CAS
clip = core.cas.CAS(clip=clip, sharpness=0.700) # maybe lower sharpness to 0.5
# applying dehalo using YAHR
clip = dehalo.YAHR(clip, depth=16)
I can identify some presets but not all. Could I assume the first 4 you list are auto-handled in Hybrid once I set QTGMC presets? I note you select "fast". Would slower be beneficial to quality?
I can identify the last three presets. For KNLMeansCL d=0 - is this distance?