Created
March 17, 2019 06:22
-
-
Save AlucardSama04/421d4d67c085f9499fbd9206fb52a790 to your computer and use it in GitHub Desktop.
Exemplu de Script AviSynth
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
src = "G:\[HorribleSubs] Sword Art Online - Alicization - 22 [1080p].mkv" | |
FFVideoSource(src) | |
ConvertToYV12() | |
EdgeCleaner(hot=true) #Dering | |
AutoDeblock2() #Deblocking | |
pf = RemoveGrain(mode=17).FluxSmooth_FluxSmoothST(7,7) #PreFilter for SMDegrain | |
SMDegrain(plane=0,tr=2,blksize=16,pel=1,subpixel=3,prefilter=pf,thSAD=75,thSADC=0,lsb=false,lsb_in=false,lsb_out=false) #Degrain | |
AntiAliasing(th_luma=48, th_croma=48, type="roberts", aath=48) #Anti-Aliasing | |
Dither_convert_8_to_16() | |
Downscale444(w=1280, h=720, inv=false, kernelY="bilinear", kernelUV="spline36", tapsY=5, tapsUV=4, lsb=true, lsb_in=true) #Resize | |
DitherPost() | |
flash3kyuu_deband_flash3kyuu_deband(dither_algo=3, sample_mode=2) #Debanding |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Victor D. Ho#0109