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
# John Cage's 4'33" in Sonic Pi | |
# First movement | |
sleep 133 | |
# Second movement | |
sleep 134 | |
# Third movement | |
sleep 86 |
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
# Sonic Pi Script | |
use_synth :sine | |
# Function for the slow oscillation | |
define :play_slow do |note| | |
play note, attack: 0.5, decay: 1, sustain_level: 0.5, sustain: 2, release: 2, amp: 0.5 | |
sleep 4 | |
end |