Advertisement
Guest User

per ilaria Saint Beast

a guest
Mar 26th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #FFmpegSource2("..\video\1302-19489-001_saintbeast-s01eps01.avi", fpsnum=30000, fpsden=1001, atrack=-1)
  2.  
  3. #DSS2("..\video\1302-19489-001_saintbeast-s01eps01.avi", fps=29.970, convertfps=true)
  4.  
  5. #indexing and color matrix definition in YUV (lossless conversion)
  6.  
  7. OpenDMLSource("..\video\1302-19489-001_saintbeast-s01eps01.avi", audio=true, pixel_type="AUTO").ColorYUV(levels="PC->TV")
  8.  
  9. #deinterlace with smart bob mode (29.970p)
  10.  
  11. tdeint(mode=2, order=-1, field=-1, mthreshL=6, mthreshC=6, map=0, type=2, debug=false, mtnmode=1, sharp=true, cthresh=6, blockx=16, blocky=16, chroma=false, MI=64, tryWeave=true, link=1, denoise=true, slow=2, opt=4)
  12.  
  13. #crop, addborder 4:3 -> 16:9
  14.  
  15. crop(8, 8, -8, -8)
  16. AddBorders(106,0,106,0)
  17.  
  18. #High Quality upscale of chroma (Cb Cr components) and luma (y component) in YUV
  19.  
  20. ResampleHQ(width=1280, height=720)
  21.  
  22. #conversion in yv12
  23.  
  24. converttoyv12(interlaced=false)
  25.  
  26. #fixing linear interpolation (29.970p to 23.976p) adaptive decimating pattern
  27.  
  28. SRestore(Frate=23.976)
  29.  
  30. #Deraimbow
  31.  
  32. ChubbyRain2(th=10, radius=10, show=false, sft=10, interlaced=false)
  33.  
  34. #firt pass: temporal decraw
  35.  
  36. LUTDeCrawl(ythresh=10, cthresh=10, maxdiff=80, scnchg=100, usemaxdiff=true, mask=false)
  37.  
  38. #temporal and spatial denoise using the fast fourier transform with blocks of 32x32
  39.  
  40. FFT3DFilter(sigma=3,bw=32,bh=32,ow=16,oh=16,plane=4, sharpen=0.4)
  41.  
  42. #debanding
  43.  
  44. flash3kyuu_deband(range=16, sample_mode=2, blur_first=true, opt=-1, keep_tv_range=false)
  45.  
  46. #antialiasing
  47.  
  48. antialiasing(th_luma=5, th_croma=5, type="sobel", aath=80)
  49.  
  50. #second pass: spatial decraw
  51.  
  52. checkmate(thr=12, max=18, tthr2=10)
  53.  
  54. #deringing and deblocking
  55.  
  56. BlindPP(quant=21, cpu=6, ipp=false, moderate_h=5, moderate_v=5)
  57.  
  58. Textsub("..\subtitles\Saint Beast S1 - 01.ass")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement