LawyerDog

SharkStream05.avs

Jan 27th, 2012
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetMemoryMax(2048)
  2. LoadCPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\ffms2.dll")
  3.  
  4. Bite = FFmpegSource2("C:\Users\Administrator\Sharkstream\Bite05.flv", vtrack = -1, atrack = -1, fpsnum = 25)
  5. #180136
  6.  
  7. Seal = FFVideoSource("C:\Users\Administrator\Sharkstream\Seal05.flv", fpsnum = 25).Trim(10087,179805)
  8. Seal = Seal + FFVideoSource("C:\Users\Administrator\Sharkstream\Seal06.mp4", fpsnum = 25).Trim(0,10418)
  9. #169718
  10.  
  11. Octary = FFVideoSource("C:\Users\Administrator\Sharkstream\Octary05.flv", fpsnum = 25, width=512,height=384).Trim(6428,180136)
  12. Octary = Octary + FFVideoSource("C:\Users\Administrator\Sharkstream\Octary06.mp4", fpsnum = 25, width=512,height=384).Trim(0,6428)
  13. #173708
  14.  
  15. ChatLog = FFVideoSource("C:\Users\Administrator\Sharkstream\ChatLog.flv", fpsnum = 50).AssumeFPS(2)
  16. ChatLog = ChatLog.ChangeFPS(25).Trim(720912, 901048)
  17.  
  18.  
  19. toprow=StackHorizontal(Bite,Seal)
  20. botrow=StackHorizontal(Octary,ChatLog)
  21. combined=stackvertical(toprow,botrow)
  22.  
  23. combined
Add Comment
Please, Sign In to add comment