From 81927955be6d4950bf7aa693a8479452eb5194bc Mon Sep 17 00:00:00 2001 From: Leonard Francis Coogan Date: Mon, 5 May 2025 19:40:46 -0400 Subject: [PATCH] cantorial deconstruction --- cantorial_deconstruction.scd | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cantorial_deconstruction.scd diff --git a/cantorial_deconstruction.scd b/cantorial_deconstruction.scd new file mode 100644 index 0000000..ee312aa --- /dev/null +++ b/cantorial_deconstruction.scd @@ -0,0 +1,17 @@ +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; +) \ No newline at end of file