I’ve been toying around with 'Pi for a few months now and I feel I’m competent enough to show off a thing I made. You listen to a performance of it here.
live_loop :heart do
with_fx :echo do
sample :bd_haus, rate: 0.5,amp: 3, lpf: 80
sleep 2
end
end
live_loop :hum do
with_fx :pan, pan: rrand(-1,1) do
with_fx :slicer do
sample :ambi_glass_rub, rate: rrand(0.1,0.25), amp: 1
sleep 0.25
end
end
end
live_loop :melody do
with_fx :flanger do
use_random_seed 831
sync "/live_loop/drone"
16.times do
synth :chiplead, note: (chord :e4, :minor).choose if (spread 11,16).tick
sleep 0.25
end
end
end
live_loop :drone do
with_fx :gverb do
synth :tech_saws, note: (chord :c2, :minor).tick, amp: 0.5, attack: 1, sustain: 6, release: 2, note_slide: 2
sleep 6
end
end