Skip to content

Instantly share code, notes, and snippets.

@datramt
Created December 24, 2018 14:49
Show Gist options
  • Save datramt/4f4496fb76e36aaae0481c006719f290 to your computer and use it in GitHub Desktop.
Save datramt/4f4496fb76e36aaae0481c006719f290 to your computer and use it in GitHub Desktop.
Piano Phase implementation in sonic pi
#piano phase by Steve Reich
#implemented by dan tramte
use_synth :piano
for i in 120..121 do
use_bpm i
in_thread do
loop do
play (ring 64, 66, 71, 73, 74, 66, 64, 73, 71, 66, 74, 73).tick, pan: 120.5-i
sleep 0.25
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment