Advertisement
feos

Ninja Spirit comparison

Sep 6th, 2019
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. global f = 4
  2.  
  3. arukAdo = avisource("arukAdo.avi") \
  4.     .pointresize(342*f, 232*f) \
  5.     .subtitle("arukAdo", align=8, size=12*f)
  6. theripper = avisource("theripper999 & EZGames69.avi") \
  7.     .pointresize(342*f, 232*f) \
  8.     .subtitle("theripper999 & EZGames69", align=8, size=12*f)
  9.  
  10. theripper = theripper.insert(202,      4)
  11. theripper = theripper.insert(867,     16)
  12. theripper = theripper.insert(4401,    40)
  13. theripper = theripper.insert(6417,    91)
  14. theripper = theripper.insert(10006,   58)
  15. theripper = theripper.insert(10970,  153)
  16. theripper = theripper.insert(14636,   41)
  17. theripper = theripper.insert(15603,  241)
  18. theripper = theripper.insert(17886,   51)
  19. theripper = theripper.insert(19154,  291)
  20. theripper = theripper.insert(20539,    1)
  21. theripper = theripper.insert(21164,  694)
  22. theripper = theripper.insert(23245,    3)
  23. theripper = theripper.insert(23761,  537)
  24. theripper = theripper.insert(27830,  196)
  25. theripper = theripper.insert(31066,    1)
  26. theripper = theripper.insert(32895,   92)
  27. theripper = theripper.insert(34200,    9)
  28. theripper = theripper.insert(35085,  502)
  29. arukAdo   =   arukAdo.insert(38606, 1488)
  30.  
  31. stackvertical(arukAdo, theripper)
  32. KillAudio
  33. audio = MonoToStereo(GetChannel(arukAdo, 1), GetChannel(theripper, 1))
  34. AudioDub(audio, last)
  35. trim(0, 41385)
  36.  
  37. function insert(clip c, int start, int length) {
  38.     blankclip(c, length)
  39.     GScript(""" for (i=0, length) {
  40.             subtitle("-"+string(i+1), align=8, size=18*f, first_frame=i, last_frame=i, text_color=color_lime)
  41.         } """)
  42.  
  43.     c.trim(0, start) ++ last ++ c.trim(start+1, -0)
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement