Last active
February 26, 2023 20:27
-
-
Save dirkmueller/7024d55fc9666b98cc2eca9d97643867 to your computer and use it in GitHub Desktop.
A thousand Miles - Sonic Pi
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
# 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