Skip to content

Instantly share code, notes, and snippets.

@samaaron
Forked from poppingtonic/jam.rb
Created December 26, 2016 22:13
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 samaaron/775f9d72c928a1bfce7c0ea4d9ea501c to your computer and use it in GitHub Desktop.
Save samaaron/775f9d72c928a1bfce7c0ea4d9ea501c to your computer and use it in GitHub Desktop.
Sonic PI Livecoding Snippet #1
live_loop :lloop do
with_fx :reverb, room: 0.5 do
with_fx :compressor do
sample :bd_boom, amp: 10, rate: 1
end
end
with_fx :reverb, room: 0.5 do
with_fx :krush, amp: 2, cutoff: 100 do
with_fx :slicer, probability: 0, phase: 0.125, mix: 0.5 do
use_synth :dsaw
use_synth_defaults cutoff: 90, release: 0.7
use_octave -2
use_transpose 4
play 55
sleep 0.8
play 52.3
sleep 0.25
play 52.63
sleep 0.25
play 52.3
sleep 0.35
play 52.3
sleep 0.4
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment