Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. live_loop :ambi do
  2. with_fx :reverb, room: 0.6 do
  3. with_fx :bitcrusher, mix: 0, mix_slide: [1,2,3,4].choose, sample_rate: 1000, sample_rate_slide: [1,2,3,4].choose do |i|
  4. use_synth_defaults mod_phase: 0.125
  5. tick
  6. use_synth :mod_pulse
  7. s = play_chord (chord (ring :a3,:d3,:f3).look, (ring :major,:diminished, :minor,:augmented).look),
  8. sustain: 1.5, release: 6, amp: rrand(0.7,1), cutoff: (range 10,80, 80).ramp.look, cutoff_slide: [1,2,3].choose
  9. control i, mix: 1, sample_rate: [1, 600, 1500, 200].choose
  10. control s, cutoff: [100,110,120,130].choose
  11. sleep 6
  12. end
  13. end end
  14.  
  15.  
  16.  
  17. d = (ring 30, 30, 90)
  18. dd = (ring 300, 300, 900)
  19.  
  20.  
  21. live_loop :it do
  22. with_fx :level, amp: rrand(0.4, 1) do
  23. with_fx :krush, mix: 1 do
  24. with_fx :bitcrusher, bits: 4 do
  25. tick
  26. s = synth :fm, divisor: d.look, divisor_slide: 1, release: 2.3, note: [:c3,:a4,:e2].choose, note_slide: 1, attack: 0.1
  27. sleep 1
  28. control s, divisor: dd.look, note: [:a2,:a3,:a4].choose
  29. sleep 3 end end end end
  30.  
  31. live_loop :chord do
  32. with_fx :level, amp: rrand(1,3) do
  33. with_fx :bitcrusher, mix: rrand(0,1) do
  34. with_fx :distortion, mix: 1 do
  35. sample :ambi_drone, rate: rrand(0, 0.3)
  36. sleep 2 end end end end
  37.  
  38.  
  39.  
  40. ar = (knit 1.0,16, 2.0,8, 3.0,4, 4.0,2)
  41.  
  42. live_loop :hats do
  43. with_fx :echo, phase: rrand(0.0125,0.125), mix: 0.2 do
  44. sample :drum_cymbal_pedal, amp: 0.5
  45. sleep ar.tick/3 end
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement