Created
April 13, 2018 15:00
-
-
Save lisabaut/af653ad4c19a7d88a28936fcf938ef25 to your computer and use it in GitHub Desktop.
Sonic Pi - Depeche Mode "I just can't get enough"
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
use_bpm 125 | |
define :main_melody do | |
3.times do | |
play 67, release: 0.8 | |
sleep 1 | |
play 67 | |
sleep 0.5 | |
play 67 | |
sleep 0.25 | |
play 67 | |
sleep 0.5 | |
play 67 | |
sleep 0.25 | |
play 67 | |
sleep 0.5 | |
play 69 | |
sleep 0.5 | |
play 71 | |
sleep 0.5 | |
end | |
play 72 | |
sleep 1 | |
play 71 | |
sleep 1 | |
play 69 | |
sleep 1 | |
play 71 | |
sleep 1 | |
end | |
live_loop :main_synth do | |
use_synth :dsaw | |
main_melody | |
end | |
live_loop :second_synth do | |
use_synth :prophet | |
main_melody | |
end | |
live_loop :kickdrum, delay: 16 do | |
sample :drum_heavy_kick, rate: 1 | |
sleep 1 | |
end | |
live_loop :bass, delay: 16 do | |
use_synth :tri | |
with_fx :krush do | |
#1 | |
play :G1, release: 0.8 | |
sleep 0.5 | |
play :G1, release: 0.8 | |
sleep 2 | |
play :C2 | |
sleep 0.75 | |
play :B1 | |
sleep 0.75 | |
#2 | |
play :G1, release: 0.8 | |
sleep 0.5 | |
play :G1, release: 0.8 | |
sleep 2 | |
play :C2 | |
sleep 0.75 | |
play :B1 | |
sleep 0.75 | |
#3 | |
play :C2, release: 0.8 | |
sleep 0.5 | |
play :C2, release: 0.8 | |
sleep 2 | |
play :F2 | |
sleep 0.75 | |
play :E2 | |
sleep 0.75 | |
#4 | |
play :C2, release: 0.8 | |
sleep 0.5 | |
play :C2, release: 0.8 | |
sleep 2 | |
play :C2, release: 0.8 | |
sleep 0.75 | |
play :C2, release: 0.8 | |
sleep 0.75 | |
end | |
end | |
live_loop :snare, delay: 32 do | |
sleep 1 | |
with_fx :reverb, room: 0.5 do | |
sample :sn_dolf, amp: 0.5 | |
end | |
sleep 1 | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
slightly different