A little ambient drone made with Sonic Pi to help you relax.
Feel free to listen and share your thoughts!
live_loop :ambient_lead do
use_bpm 60
use_synth :prophet
notes = scale(:e3, :minor, num_octaves: 2)
n = notes.choose
with_fx :reverb, room: 0.9, mix: 0.6 do
with_fx :echo, phase: 0.75, decay: 6, mix: 0.35 do
with_fx :lpf, cutoff: rrand(70, 120) do
play n,
attack: 4.0,
sustain: 5.0,
release: 6.0,
amp: 0.25,
pan: rrand(-0.4, 0.4)
end
end
end
sleep [2, 4, 6].choose
end