Last active
December 21, 2019 16:57
-
-
Save nicoder/b6f2dad0c8d2159ed5991b00bb3920ab to your computer and use it in GitHub Desktop.
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
with_fx :panslicer, phase: 0.5 do | |
with_fx :reverb do | |
with_fx :echo do | |
with_fx :krush do | |
live_audio :in1, amp: 3, pan: -1 | |
end | |
with_fx :distortion do | |
live_audio :in2, amp: 3, pan: 1 | |
end | |
end | |
end | |
end | |
live_loop :a do | |
sample :ambi_sauna, pitch_stretch: (rrand 1, 2), pan: (rrand -1, -0.2), amp: rrand(0.2, 1) | |
sleep 1 | |
end | |
live_loop :b do | |
sync :a | |
with_fx :echo, mix: rand, decay: rrand(1, 4) do | |
use_synth (ring :bnoise, :cnoise).tick | |
sleep 0.5 | |
play scale(60, :major).look, pan: (rrand 0.2, 1), amp: rrand(0.1, 0.3) | |
end | |
end | |
live_loop :c do | |
sync :a | |
use_synth :fm | |
with_fx :echo do | |
play (ring 48, 50).stretch(4).tick, release: 0.2 | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment