Created
April 7, 2016 02:29
-
-
Save nicoder/d541107f61b8d7a3cfd8c59489fa9b52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
live_loop :m do | |
sample :bd_haus, amp: 1 | |
sleep 1 | |
end | |
live_loop :a do | |
#sync :m | |
sample :bd_haus, beat_stretch: 0.4 if one_in 3 | |
sleep 0.125 | |
end | |
live_loop :b do | |
#sync :m | |
use_synth :dpulse | |
with_fx :slicer, phase: (ring 0.5, 0.25, 0.125).tick do | |
play (ring chord(:e, :minor), chord(:c, :major7)).stretch(2).look, release: 4, cutoff: (rrand 60, 70) | |
end | |
sleep 4 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment