Created
September 7, 2021 13:13
-
-
Save datashaman/e4cc432516dbe6c923c3390af2d6a52a to your computer and use it in GitHub Desktop.
Snake Jazz in Sonic Pi
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 :snake_jazz do | |
with_fx :compressor do | |
with_fx :flanger, mix: rrand(0, 0.2) do | |
with_fx :reverb, amp: rrand(0, 0.6) do | |
with_fx :tanh, krunch: 2, mix: rrand(0, 0.2) do | |
with_fx :hpf, cutoff: 130 - rrand(0, 20), mix: rrand(0.9, 1) do | |
sample :drum_cymbal_open | |
sleep 0.75 | |
sample :drum_cymbal_pedal | |
sleep 0.5 | |
sample :drum_cymbal_pedal, sustain: 0.1 | |
sleep 0.25 | |
end | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment