Advertisement
Guest User

Untitled

a guest
Apr 20th, 2013
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. By Cretindesaples
  2. ### Modify this:
  3. vidfile = "random_garbage.mkv"
  4. ###
  5.  
  6. c1 = FFVideoSource (vidfile, enable10bithack=false)
  7. c2 = FFVideoSource (vidfile, enable10bithack=true, varprefix="c1_")
  8. w = c1.Width ()
  9. h = c1.Height ()
  10. wm4 = (w + 3) / 4 * 4
  11. hm4 = (h + 3) / 4 * 4
  12. b10 = (c2.Height () > c1.Height ())
  13.  
  14. matrix = (c1_FFCOLOR_SPACE == 1) ? "709"
  15. \ : (c1_FFCOLOR_SPACE >= 5) ? "601" : Dither_undef ()
  16. par = (c1_FFSAR_NUM > 0 && c1_FFSAR_DEN > 0)
  17. \ ? Float (c1_FFSAR_NUM) / Float (c1_FFSAR_DEN)
  18. \ : Dither_undef ()
  19. tv_range = (c1_FFCOLOR_RANGE != 2)
  20.  
  21. (b10) ? c2 : c1
  22. (VersionNumber () >= 2.6) ? last
  23. \ : (b10) ? Dither_addborders16 (0, 0, wm4 - w, hm4 - h)
  24. \ : AddBorders (0, 0, wm4 - w, hm4 - h)
  25. Dither_srgb_display (lsb_in=b10, matrix=matrix, par=par, tv_range=tv_ran
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement