ark_d.amorphic/lib/bufPlayer.scd

8 lines
134 B
Plaintext

(
SynthDef(\bufPlayer, {|out = 0, bufnum = 0 |
Out.ar(out,
PlayBuf.ar(1, bufnum, BufRateScale.kr(bufnum), loop: 1.0)
)
}).add;
);