multigrain/sequencer.scd

27 lines
299 B
Plaintext
Raw Normal View History

2023-10-01 02:21:40 +00:00
(
2023-10-01 02:21:40 +00:00
~metrob = Bus.audio(s, 2);
~metromix = SynthDef(\metromix, {
arg in=1, out=0, amp=1;
Out.ar(out, amp * In.ar(in, 2));
}).play(s, [\in, ~metrob, \out, 0, \amp, 0]);
~metronome = Pbind(
\instrument, \metronome,
2023-10-25 03:34:23 +00:00
\dur, ~beatsperbar,
2023-10-01 02:21:40 +00:00
\amp, 0.5,
\pan, 0,
\out, ~metrob
).play(~tc);
)
2023-10-01 02:21:40 +00:00
2023-10-06 20:58:14 +00:00