Created
May 31, 2021 06:11
-
-
Save nischalshrestha/ea85e21a7984833d5ad0a58030e5b72c to your computer and use it in GitHub Desktop.
Conjuring 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
##| THE CONJURING sound... | |
live_loop :conjuring do | |
amp = 1 | |
with_fx :reverb, room: 0.8, mix: 0.8 do | |
with_fx :lpf, cutoff: 0 do | |
with_fx :pitch_shift, pitch_dis: 0.002 do | |
with_synth :saw do | |
play :e1, amp: amp, attack: 0, sustain: 0.5, release: 1 | |
play :e1, amp: amp, attack: 0.25, sustain: 0.5, release: 1 | |
play :ds1, amp: amp, attack: 0.25, sustain: 0.5, release: 1 | |
play :e2, amp: amp, attack: 0.25, sustain: 0.5, release: 1 | |
play :e3, amp: amp, attack: 0.25, sustain: 0.5, release: 1 | |
##| play :ds5, amp: amp, attack: 0.25, sustain: 0.5, release: 1 | |
end | |
end | |
end | |
sleep 0.5 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment