Advertisement
torchlight

Kotoura-san specials

Feb 6th, 2013
330
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #avs file for the Kotoura-san: Haruka no Heya specials that were on YouTube
  2. #pretty standard antialiasing, debanding, followed by colourspace conversion
  3. #all eps had exactly the same dupe pattern and the only differences between the six avs files are in the ffvideosource lines
  4.  
  5. function aa(clip src)
  6. {
  7. src
  8. mask=spline36resize(1280,720).mt_edge("laplace",1,1).removegrain(20)
  9. spline36resize(2560,1440)
  10. sangnom().turnleft.sangnom().turnright
  11. mt_merge(src.spline36resize(1280,720),last.spline36resize(1280,720),mask,luma=true)
  12. }
  13.  
  14. ffvideosource("00001.mp4").assumefps(30000,1001)
  15. selectevery(5,0,1,2,3).aa().gradfun3(lsb=true)
  16. Dither_convert_yuv_to_rgb (matrix="601", output="rgb48y", lsb_in=true)
  17. r = SelectEvery (3, 0)
  18. g = SelectEvery (3, 1)
  19. b = SelectEvery (3, 2)
  20. Dither_convert_rgb_to_yuv (r, g, b, matrix="709", lsb=true)
  21. dither_quantize(10,reducerange=true)
  22. Dither_convey_yuv4xxp16_on_yvxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement