-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsequencer.rb
More file actions
24 lines (18 loc) · 834 Bytes
/
sequencer.rb
File metadata and controls
24 lines (18 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Before running this file, first run helpers/sequencer.rb to load the seq function
use_bpm 110
seq [:drum_cymbal, "o...c...c...c...", # o => :drum_cymbal_open, c => :drum_cymbal_closed
:drum_bass, "X.......X.X.....", # X => :drum_bass_hard, x => :drum_bass_soft
:drum_tom_mid, "....X.......X..."], 0.25
seq [:drum_cymbal, "c...c..."*2,
:drum_bass, "X.X....."*2,
:drum_tom_mid, "....X..x"*2], 0.25
seq [:drum_cymbal, "c.c.c.c.c.c.c.c.",
:drum_bass, "X.......X.X.....",
:drum_tom_mid, "....X..x....X..x"], 0.25
seq [:drum_cymbal, "o.c.c.c.c.c.c...",
:drum_bass, "X.......X.X.....",
:drum_tom_mid, "....X..x....X..x",
:drum_tom_hi, "..............x."], 0.25
seq [:drum_cymbal, "cccc.ccc"*2,
:drum_bass, "x.x.x.x."*2,
:drum_tom_mid, "....x..."*2]*8, 0.25