My approximation of the drum intro from "Caravan", from the movie Whiplash

use_bpm 70

in_thread do
  sample :drum_cymbal_hard
  sleep(0.5)
  loop do
    sample :drum_cymbal_soft
    sleep(0.5)
  end
end

in_thread do
  loop do
    sample :drum_heavy_kick
    sleep(0.375)
    sample :drum_heavy_kick
    sleep(0.375)
    sample :drum_heavy_kick, amp: 0.5
    sleep(0.25)
  end
end

in_thread do
  sleep(0.875)
  loop do
    sample :drum_snare_soft
    sleep(0.625)
    sample :drum_snare_soft
    sleep(0.375)
    sample :drum_snare_soft
    sleep(1)
  end
end

Hi @jwdungbat!

I know nothing about the Whiplash movie, or that ‘Caravan’ part - but it sounds pretty good regardless :smile:

Welcome!

1 Like