Created
February 19, 2015 04:26
-
-
Save nicoder/dd86f39d02025fe3f86f to your computer and use it in GitHub Desktop.
20150217 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
use_bpm 100 | |
loop do | |
play :c5, attack: 2, release: 5 | |
play :e5, attack: 2, release: 5 | |
play :c6, attack: 2, release: 5 | |
with_fx :distortion, distort: 0.95 do | |
with_fx :bpf do | |
play :g, attack: 0.5, release: 2 | |
sleep 1 | |
play :e, attack: 0.5, release: 2 | |
sleep 0.5 | |
play :c, attack: 0.5, release: 2 | |
sleep 1.5 | |
play :e, attack: 0.5, release: 2 | |
sleep 1.5 | |
play :g, attack: 0.5, release: 2 | |
sleep 1.5 | |
play :c5, attack: 2, release: 5 | |
play :g5, attack: 2, release: 5 | |
play :c6, attack: 2, release: 5 | |
sleep 7 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment