You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
scd/granular mechon.scd

29 lines
288 B
Plaintext

b = Buffer.read(s, "/Users/lcoogan/snd/samples/granular/mechon.wav");
b.free;
(
{
var sig, amp;
sig = GrainBuf.ar(
2,
Dust.ar(10),
LFNoise1.ar(0.08).range(1)),
b,
1,
0.23,
2,
0,
-1,
512,
);
amp = 2;
sig = sig * amp;
sig;
}.play;
)
s.meter;
s.plotTree;