Advertisement
feos

Arkanoid comparison

Apr 13th, 2019
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. f = 6
  2.  
  3. chef   = avisource(  "chef.avi").pointresize(256*f, 224*f).subtitle("Chef Stef", align=9, size=12*f).ResampleAudio(48000)
  4. baxter = avisource("baxter.avi").pointresize(256*f, 224*f).subtitle(   "Baxter", align=9, size=12*f)
  5.  
  6. chef = chef.insert(    1,   1)
  7. chef = chef.insert( 1615, 219)
  8. chef = chef.insert( 2956, 256)
  9. chef = chef.insert( 4113,  99)
  10. chef = chef.insert( 5267,  74)
  11. chef = chef.insert( 6664, 286)
  12. chef = chef.insert( 7735, 131)
  13. chef = chef.insert( 8784, 186)
  14. chef = chef.insert(10319, 120)
  15. chef = chef.insert(11432, 114)
  16. chef = chef.insert(13320, 211)
  17. chef = chef.insert(14452,  83)
  18. chef = chef.insert(15306,  18)
  19. chef = chef.insert(16367,  72)
  20. chef = chef.insert(18088, 397)
  21. chef = chef.insert(19360,  80)
  22. chef = chef.insert(20430, 136)
  23. chef = chef.insert(21488,  47)
  24. chef = chef.insert(22502,  50)
  25. chef = chef.insert(23369,  34)
  26. chef = chef.insert(24143,   5)
  27. chef = chef.insert(24980, 104)
  28. chef = chef.insert(26646,  39)
  29. chef = chef.insert(27873, 100)
  30. chef = chef.insert(29450,  13)
  31. chef = chef.insert(32244, 130)
  32. chef = chef.insert(33442, 155)
  33. chef = chef.insert(35341, 192)
  34. chef = chef.insert(37088, 182)
  35. chef = chef.insert(38579,  54)
  36. chef = chef.insert(39693,  53)
  37. chef = chef.insert(41155, 325)
  38. chef = chef.insert(42479, 245)
  39. chef = chef.insert(43632, 207)
  40. chef = chef.insert(45458, 159)
  41.  
  42. stackhorizontal(chef, baxter)
  43. KillAudio
  44. audio = MonoToStereo(GetChannel(chef, 1), GetChannel(baxter, 1))
  45. AudioDub(audio, last)
  46. trim(0, 48023)
  47.  
  48. function insert(clip c, int start, int length) {
  49.     blankclip(c, length)
  50.     c.trim(0, start) ++ last ++ c.trim(start+1, -0)
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement