Skip to content

Instantly share code, notes, and snippets.

@dirkmueller
Last active February 26, 2023 20:27
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 dirkmueller/7024d55fc9666b98cc2eca9d97643867 to your computer and use it in GitHub Desktop.
Save dirkmueller/7024d55fc9666b98cc2eca9d97643867 to your computer and use it in GitHub Desktop.
A thousand Miles - Sonic Pi
# Welcome to Sonic Pi
use_synth :piano
use_synth_defaults stereo_width: 1, hard: 0.4
use_bpm 95
with_fx :reverb, room: 0.75 do
play_pattern_timed [:B4], [0.25]
play_pattern_timed [:B5, :B4, :B5, :Bb5, :B4, :Bb5], [0.25]
play_pattern_timed [:Gb5, :Eb5, :Db5], [1.5, 0.5, 0.25]
play_pattern_timed [:B4], [0.25]
play_pattern_timed [:B5, :B4, :B5, :Bb5, :B4, :Bb5], [0.25]
play_pattern_timed [:Gb5, :B4, :Gb5, :B4, :Gb5, :B4], [0.25]
play_pattern_timed [:Eb5, :E5, :Eb5, :Db5], [0.25]
play_pattern_timed [:B5, :B4, :B5, :Bb5, :B4, :Bb5], [0.25]
play_pattern_timed [:Gb5, :Eb5, :Db5], [1.5, 0.5, 0.25]
play_pattern_timed [:Eb5, :Db5, :B4], [0.25]
play_pattern_timed [:Eb5, :Db5, :B4], [0.25]
play_pattern_timed [:Gb5], [1]
end
with_fx :reverb, room: 0.9 do
play :B4
play :Db5
sleep 3
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment