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.

Reinterpolation411-style script insertion
#10
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?
Reply


Messages In This Thread
RE: Reinterpolation411-style script insertion - by cjsport - Yesterday, 20:46

Forum Jump:


Users browsing this thread: 1 Guest(s)