Advertisement
Guest User

Y8Test.avs

a guest
Oct 31st, 2017
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. function LumaBlock(int n){
  2. return BlankClip(width=80,height=400,pixel_type="RGB32",color=n*(65536+256+1)).Subtitle(String(n),align=2)
  3. }
  4.  
  5. StackHorizontal( \
  6. LumaBlock(0), \
  7. LumaBlock(16), \
  8. LumaBlock(32), \
  9. LumaBlock(64), \
  10. LumaBlock(96), \
  11. LumaBlock(128), \
  12. LumaBlock(160), \
  13. LumaBlock(192), \
  14. LumaBlock(224), \
  15. LumaBlock(235), \
  16. LumaBlock(255) \
  17. )
  18. KillAudio()
  19.  
  20. # 本来は入れなくて良いはずだがAvisynth+ r2506だとRGB→Y8変換のバグがあるのか、入れないとおかしくなる。
  21. # Avisynth 2.6MTでは入れなくても問題ない。
  22. ConvertToYV24()
  23.  
  24. ConvertToY8()
  25. Subtitle(VersionString,align=9)
  26.  
  27. info
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement