Skip to content

Instantly share code, notes, and snippets.

@nfreear
Last active November 24, 2019 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfreear/2258c46649ac6639ee14f20db41b9f57 to your computer and use it in GitHub Desktop.
Save nfreear/2258c46649ac6639ee14f20db41b9f57 to your computer and use it in GitHub Desktop.
Rosie's Sonic PI composition, 24-Nov-2019 | Sonic PI v3.1 on Mac | https://projects.raspberrypi.org/en/projects/getting-started-with-sonic-pi
# Rosie's Sonic PI composition, 24-Nov-2019
#
# (Sonic PI v3.1 on Mac)
#
# https://projects.raspberrypi.org/en/projects/getting-started-with-sonic-pi
use_synth :pretty_bell
2. times do
play_chord [:Ab4, :C5, :Eb5] # [68, 72, 75]
sleep 0.5
play_chord [:C4, :Eb4, :G4] # [60, 63, 67]
sleep 0.5
end
1. times do
play_chord [:Ab4, :C5, :Eb5]
sleep 0.5
play_chord [:G4, :B4, :D5] # [67, 71, 74]
end
1. times do
sleep 0.5
play :Ab4
sleep 0.25
play :G4
sleep 0.25
play :F4 # 65
sleep 0.5
play_chord [:Ab4, :C5, :Eb5]
sleep 0.25
play_chord [:G4, :B4, :D5]
end
1. times do
sleep 1
play :F4 # 65
sleep 0.5
play :Eb4 # 63
sleep 0.25
play :D4 # 62
sleep 0.25
play :C4 # 60
sleep 1
play_chord [:b4, :d5, :f7] # [71, 74, 77]
sleep 1.1
play_chord [:c5, :Eb6, :Gb5] # [72, 75, 78]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment