18.08.2025, 11:43
# Spot removal using SpotLess
clip = SpotLess.SpotLess(clip=clip, radT=3, rec=True, pel=1, smoother="zsmooth")
# applying deblocking using DeBlock QED
clip = deblock.Deblock_QED(clip, quant1=60, quant2=60, aOff2=4, bOff2=4)
# removing grain using SMDegrain
clip = smdegrain.SMDegrain(input=clip, tr=3, thSAD=600, thSADC=256, interlaced=False, opencl=True, device=-1)
I can't seem to match these settings - what are the actual settings in the filters?