1
0
Fork 0
Rhizosphere/lib/recIn.scd

7 lines
155 B
Plaintext

(
SynthDef(\recIn, { arg out = 0, bufnum = 0;
var snd = SoundIn.ar(0,1);
RecordBuf.ar(snd, bufnum, doneAction: Done.freeSelf, loop: 0);
}).add;
);