-
-
Save samaaron/775f9d72c928a1bfce7c0ea4d9ea501c to your computer and use it in GitHub Desktop.
Sonic PI Livecoding Snippet #1
This file contains 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 :lloop do | |
with_fx :reverb, room: 0.5 do | |
with_fx :compressor do | |
sample :bd_boom, amp: 10, rate: 1 | |
end | |
end | |
with_fx :reverb, room: 0.5 do | |
with_fx :krush, amp: 2, cutoff: 100 do | |
with_fx :slicer, probability: 0, phase: 0.125, mix: 0.5 do | |
use_synth :dsaw | |
use_synth_defaults cutoff: 90, release: 0.7 | |
use_octave -2 | |
use_transpose 4 | |
play 55 | |
sleep 0.8 | |
play 52.3 | |
sleep 0.25 | |
play 52.63 | |
sleep 0.25 | |
play 52.3 | |
sleep 0.35 | |
play 52.3 | |
sleep 0.4 | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment