View Single Post
Old 25th September 2010, 09:53   #37  |  Link
cretindesalpes
͡҉҉ ̵̡̢̛̗̘̙̜̝̞̟̠͇̊̋̌̍̎̏̿̿
 
cretindesalpes's Avatar
 
Join Date: Feb 2009
Location: No support in PM
Posts: 712
Either use Dither1Pre/Dither2Pre, either the modified MDegrain or dfttest, but not both. The only purpose of DitherXPre is to give the possibility to use a specific denoiser which hasn't been modified to output 16 bit data. For example :

Code:
# (Put your source here)
Dither2Pre (flt="TTempSmoothF(lthresh=4*4,cthresh=5*4).frfun7(Lambda=1.1*4)")
DitherPost ()
Without Dither2Pre, your script becomes:

Code:
# (Import scripts, plug-ins and input clip here)

h = Height ()
w = Width ()

super   = MSuper(pel=2, sharp=1)
bv3     = MAnalyse(super, isb = true, delta = 3, overlap=8, blksize=16)
bv2     = MAnalyse(super, isb = true, delta = 2, overlap=8, blksize=16)
bv1     = MAnalyse(super, isb = true, delta = 1, overlap=8, blksize=16)
fv1     = MAnalyse(super, isb = false, delta = 1, overlap=8, blksize=16)
fv2     = MAnalyse(super, isb = false, delta = 2, overlap=8, blksize=16)
fv3     = MAnalyse(super, isb = false, delta = 3, overlap=8, blksize=16)

MDegrain3(super, bv1, fv1, bv2, fv2, bv3, fv3, thSAD=400, lsb=true)

msb = last.Crop (0, 0, w, h)
lsb = last.Crop (0, h, w, h)
DitherPost (msb, lsb)
With the latest version, the three last lines can just be replaced with DitherPost (stacked=true) and you don't need to collect w and h.
__________________
dither 1.28.1 for AviSynth | avstp 1.0.4 for AviSynth development | fmtconv r30 for Vapoursynth & Avs+ | trimx264opt segmented encoding

Last edited by cretindesalpes; 25th September 2010 at 09:56.
cretindesalpes is offline   Reply With Quote