14.11.2023, 13:42
I'd like to change the sharpening value of CAS from 0.6 to 0.4 in the 2 Step fmtconv resizer from Vapoursynth tab
Hybrid generated vapoursynth configuration :
# Step 1: current: 3840x1608, target: 2324x1212
clip = core.fmtc.resample(clip=clip, kernel="spline36", w=2324, h=1212, interlaced=False, interlacedd=False)
# sharpening stepped resize using CAS
# contrast sharpening using CAS
clip = core.cas.CAS(clip=clip, sharpness=0.6)
# Step 2: current: 2324x1212, target: 1920x804
clip = core.fmtc.resample(clip=clip, kernel="spline36", w=1920, h=804, interlaced=False, interlacedd=False)
Thanks !Please, read the 'Infos needed to fix&reproduce bugs,..'-sticky before you post about a problem.
Hybrid generated vapoursynth configuration :
# Step 1: current: 3840x1608, target: 2324x1212
clip = core.fmtc.resample(clip=clip, kernel="spline36", w=2324, h=1212, interlaced=False, interlacedd=False)
# sharpening stepped resize using CAS
# contrast sharpening using CAS
clip = core.cas.CAS(clip=clip, sharpness=0.6)
# Step 2: current: 2324x1212, target: 1920x804
clip = core.fmtc.resample(clip=clip, kernel="spline36", w=1920, h=804, interlaced=False, interlacedd=False)
Thanks !Please, read the 'Infos needed to fix&reproduce bugs,..'-sticky before you post about a problem.