Skip to content

Instantly share code, notes, and snippets.

@nischalshrestha
Created May 31, 2021 06:11
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 nischalshrestha/ea85e21a7984833d5ad0a58030e5b72c to your computer and use it in GitHub Desktop.
Save nischalshrestha/ea85e21a7984833d5ad0a58030e5b72c to your computer and use it in GitHub Desktop.
Conjuring Sonic Pi
##| 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