Guest User

Untitled

a guest
Jun 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. with_fx :record, buffer: :foo2 do
  2. 8.times do
  3. use_real_time
  4. note, velocity = sync "/midi/usb_keystation_49e/0/1/note_on"
  5. synth :blade, note: note unless velocity == 0
  6. end
  7. end
  8.  
  9. live_loop :blu do
  10. sleep 5
  11. sample buffer(:foo2)
  12. end
  13.  
  14. with_fx :record, buffer: :bar do
  15. 8.times do
  16. use_real_time
  17. note, velocity = sync "/midi/usb_keystation_49e/0/1/note_on"
  18. synth :dsaw, note: note unless velocity == 0
  19. end
  20. end
  21.  
  22. live_loop :bla do
  23. sleep 5
  24. sample buffer(:bar)
  25. end
Add Comment
Please, Sign In to add comment