This beat is one of my favourites from DJ premier, I am just trying to get the first part of the song right i.e the pulsating beep, not able to get a sound close to it any help is appreciated
I was able to put together the rest of the song! beats, bassline and the piano
use_bpm 90
beep_note = :elec_ping
live_loop :beep do
##| stop
with_fx :flanger do
3.times do
sample beep_note, pitch: 3, amp: 6
sleep 0.75
end
sleep 0.25
2.times do
sample beep_note, pitch: 3, amp: 6
sleep 0.75
end
end
end
grid1 = [
1,0,0,0,
2,0,0,0,
0,2,1,0,
2,0,0,1,
1,0,1,0,
2,0,0,0,
0,2,1,0,
2,0,0,0
]
live_loop :drum1 do
32.times do |index|
puts index, grid1[index]
with_fx :reverb, mix: 0.3 do
sample :drum_heavy_kick, release: 0.8 if grid1[index] == 1
sample :drum_snare_hard, amp: 0.5, release: 0.1 if grid1[index] == 2
end
sleep 0.25
end
end
I have also uploaded my full example here https://www.youtube.com/watch?v=mPaE8j3YJC4