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.
17 lines
416 B
Plaintext
17 lines
416 B
Plaintext
b = Buffer.read(s, "/Users/lcoogan/snd/live/2025-04-26.Basic_City_Brewery/trax/04-Cantor_Samuel_Malavsky_Zechor.wav");
|
|
b.play;
|
|
|
|
(
|
|
SynthDef(\brickwall, {
|
|
arg out=0, bufnum, fftSize=4096;
|
|
var source, chain, sig;
|
|
|
|
source = PlayBuf.ar(1, bufnum, loop: 0, doneAction: 2);
|
|
|
|
chain = FFT(LocalBuf(fftSize), source);
|
|
chain = PV_BrickWall(chain, -0.992);
|
|
|
|
sig = IFFT(chain);
|
|
Out.ar(out, sig.dup);
|
|
}).play;
|
|
) |