Advertisement
AzraelNewtype

Letter to TV-Nihon, which may be irrelevant now

Jun 25th, 2016
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. To whom it may concern:
  2.  
  3. Using the freely available public raw to release your episode is not all that difficult. Observe the following:
  4.  
  5. LWLibavVideoSource("[THISFILEHASNOSUBS] GARO - Makai Tales - 12 [10B89030].mkv", stacked=true, format="YUV420P16")
  6. #for HD
  7. dither_Resize16(1280,720, kernel="bicubic", a1=-.5, a2=.25)
  8. #for SD
  9. #dither_Resize16(854,480, kernel="bicubic", a1=-.5, a2=.25)
  10. ditherpost(mode=0)
  11.  
  12. You can even upscale back to 1080 if you desire. It... won't be great, but seeing as you are already upscaling 1440x1080 to 1920x1080, this is just an expansion in two directions instead of one. I wouldn't suggest using bicubic with those parameters for such a thing though. Probably more something like:
  13.  
  14. dither_Resize16(1920,1080, kernel="spline16")
  15.  
  16. Anyway, anything after the ditherpost() call will be in nice, avisynth friendly 8-bit format, so you can add subtitles and splashes and whatever at will. If you aren't familiar with dithertools or l-smash source they can be found here:
  17.  
  18. http://forum.doom9.org/showthread.php?p=1386559#post1386559
  19. https://www.dropbox.com/sh/3i81ttxf028m1eh/AAABkQn4Y5w1k-toVhYLasmwa?dl=0
  20.  
  21. Just load the dlls and import the avsi, or dump them in your auto-load directory if that's how you usually roll.
  22.  
  23. Don't skip the finale of a show that you know has raws available out of pride.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement