Hello all, new to SonicPi and making music in general. I was listening to this mix from Amelie Lens https://youtu.be/ojxZhCj4m7c?t=105 and noticed a cool sound like 3 hits on a snare or hihat. Thought I would try to recreate it in SonicPi, I think I am close to recreating it but I can’t quite get there.
Here is what I have so far:
use_bpm 130
live_loop :metro do
sleep 1
end
with_fx :reverb do
live_loop :beat, sync: :metro do
sample :bd_klub
sleep 1
end
end
live_loop :hihat, sync: :metro do
##| stop
# Make the whole loop take 2 beat
hihatSleep = 0.125
loopSleep = 2 - (3 * hihatSleep)
3.times do
sample :drum_snare_soft, attack: 0, release: hihatSleep, amp: 0.5
sleep hihatSleep
end
sleep loopSleep
end
I was curious if anyone might be able to help with what fx I need to apply to the snares to more closely match the version in the youtube mix?