Created
October 4, 2015 06:05
-
-
Save darinwilson/e5f8c4f69dfed9286523 to your computer and use it in GitHub Desktop.
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
# Phasing Piano for Sonic Pi, coded by Darin Wilson | |
# inspired by Steve Reich's Clapping Music | |
# | |
# This piece consists of two threads, each playing the same short melodic phrase. | |
# | |
# On every third pass through the phrase, one of the threads shifts the phase by | |
# 1/4 of a beat, moving it more and more out of phase. Eventually, it comes | |
# back around to where it started, and the piece ends. | |
use_synth :piano | |
use_bpm 88 | |
define :play_phrase do | |
play_pattern_timed [72, 70, 72, 67, 65, 70, 62, 60], | |
[0.25, 0.25, 0.5, 0.25, 0.5, 0.5, 0.25, 0.25] | |
end | |
# this thread plays the phrase consistently | |
with_fx :pan, pan: -0.5 do | |
in_thread(name: :steady) do | |
40.times do | |
play_phrase | |
sleep 0.25 | |
end | |
end | |
end | |
# this thread shifts the phrase 1/4 beat later on every 3rd pass | |
with_fx :pan, pan: 0.5 do | |
in_thread(name: :phasing) do | |
13.times do | |
3.times do |count| | |
play_phrase | |
# last time, wait an extra 0.25 before starting the phrase again | |
sleep (count == 2 ? 0.5 : 0.25) | |
end | |
puts "SHIFT!" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment