Created
April 8, 2016 12:22
-
-
Save nicoder/cb89b8ca3258bc9e4897a4679f619cc9 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
# clapping music (steve reich) | |
use_bpm 90 | |
notes = (ring :c, :c, :c, :r, :c, :c, :r, :c, :r, :c, :c, :r) | |
in_thread do | |
(13 * 4 * 12).times do | |
play notes.tick, release: 0.2, pan: -0.2 | |
sleep 0.25 | |
end | |
end | |
use_synth :fm | |
13.times do |i| | |
tick_set i | |
4.times do | |
12.times do | |
play notes.tick, release: 0.2, pan: 0.2 | |
sleep 0.25 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment