From 68895529727f9b8dcb1a9ba9ad60569488720e37 Mon Sep 17 00:00:00 2001 From: Leo Coogan Date: Wed, 21 May 2025 10:09:29 -0400 Subject: [PATCH] minor edit --- convolution.scd | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/convolution.scd b/convolution.scd index 2539807..b4e534f 100644 --- a/convolution.scd +++ b/convolution.scd @@ -1,6 +1,7 @@ +s.boot; ~irA = Buffer.read(s, "/home/lcoogan/snd/samples/convolution/ir_chunks/ir_chunk_000.wav"); ~irB = Buffer.read(s, "/home/lcoogan/snd/samples/freesound/vocals/ymaaela/fvocal.wav"); -~ir.play; +~irA.play; b = Buffer.read(s, "/home/lcoogan/snd/live/2025-04-26.Basic_City_Brewery/harm/01 Ritual for Harmonica.wav", bufnum:0); @@ -9,6 +10,10 @@ b = Buffer.read b = Buffer.read(s, "/home/lcoogan/snd/live/2025-04-26.Basic_City_Brewery/trax/01-Cantor_Samual_Malavsky_Shomea_Kol_Bichios.wav"); +b = Buffer.read(s, "/home/lcoogan/snd/releases/desolation-mountain/01. Crawling and Quietly Seething Was the Figure of the Trees.wav"); + +b = Buffer.read(s, "/home/lcoogan/Misc/ametsub.wav"); + ( @@ -33,7 +38,8 @@ SynthDef(\convolvCrossfade, { x = Synth(\convolvCrossfade, [\mix, 0.0]); // 50/50 blend +x.set(\mix, 0); +x.set(\mix, 0.5); // Mostly IR B x.set(\mix, -1.0); // Only IR A x.set(\mix, 1.0); // Only IR B -x.set(\mix, 0.5); // Mostly IR B