Advertisement
AzraelNewtype

444 stuff

Apr 13th, 2013
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # added below debilinear444(), right before the end of the file (if not doing any filtering probably right below)
  2.  
  3. smoothgrad() # can probably skip if the source gradients aren't too banded since you're probably not adding more via filters
  4. dither_convert_yuv_to_rgb(lsb_in=true,matrix="709",output="rgb48y")
  5. r = SelectEvery (3, 0)
  6. g = SelectEvery (3, 1)
  7. b = SelectEvery (3, 2)
  8. Dither_convey_rgb48_on_yv12 (r, g, b)
  9.  
  10. =========================================================
  11.  
  12. encoder cli changes
  13.  
  14. avs2yuv.exe -raw input.avs - | x264-10bit.exe [your usual settings minus the source avs here] --input-res 1280x720 --input-depth 16 --fps 24000/1001 --input-csp rgb --output-csp i444 --demuxer raw --colormatrix bt709 -
  15.  
  16. that trailing - means to read from stdin (the pipe) so don't omit it
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement