[Csnd] Smoothly toggle between pconvolves
Date | 2013-02-16 21:47 |
From | Anders Genell |
Subject | [Csnd] Smoothly toggle between pconvolves |
Dear list! I am running a csd where I toggle between two impulse responses to convolve with. Something like if (ktrig == 0) the ares pconvolve anoise, "IR1.wav" elseif (ktrig == 1) ares pconvolve anoise, "IR2.wav" endif This of course produces bumps when switching from one to the other. Is there a neat and clever way to smoothly "fade" from one to the other? Regards, /Anders |
Date | 2013-02-16 22:28 |
From | Takahiko Tsuchiya |
Subject | Re: [Csnd] Smoothly toggle between pconvolves |
Hi Anders, Here is a simplest one I could think of... asig1 pconvolve anoise, "IR1.wav" asig2 pconvolve anoise, "IR2.wav" if (ktrig == 0) then ares = asig1 else aramp linseg 0, .1, 1, 0, 1 ares = asig1 * (1 - aramp) + asig2 * aramp endif Takahiko On Sat, Feb 16, 2013 at 4:47 PM, Anders Genell <anders.genell@gmail.com> wrote:
|
Date | 2013-02-17 00:45 |
From | Rory Walsh |
Subject | Re: [Csnd] Smoothly toggle between pconvolves |
That will not work great if you want to continuously swap between the two sounds as linseg will eventually get to 1 and stay there. Here's a simple UDO and example that will do want you want. |
Date | 2013-02-17 11:17 |
From | Takahiko Tsuchiya |
Subject | Re: [Csnd] Smoothly toggle between pconvolves |
Hi Rory, Seems linseg gets (re)initialized at if statement, so it doesn't necessarily stay at 1... Anyway, I came up with a shorter one.
asig1 pconvolve anoise, "IR1.wav" asig2 pconvolve anoise, "IR2.wav"
ktrig port ktrig, .1, 0 asig = asig1 * (1 - ktrig) + asig2 * ktrig Takahiko On Sat, Feb 16, 2013 at 7:45 PM, Rory Walsh <rorywalsh@ear.ie> wrote: That will not work great if you want to continuously swap between the |
Date | 2013-02-17 11:38 |
From | Rory Walsh |
Subject | Re: [Csnd] Smoothly toggle between pconvolves |
linseg won't get reinitialised at the if statement, it will just start at soon as ktrig==1. But once it reaches 1 it will stay there, so swapping between the two after that would result in clicks. Your shorter example is much more versatile and allows swapping over and back between the two sounds. Why do I never think to use port!? |
Date | 2013-02-17 17:28 |
From | Anders Genell |
Subject | Re: [Csnd] Smoothly toggle between pconvolves |
Mr T! Thank you very much! I had to set the halftime to 0.35 to avoid minor clicks (I suppose it's because I run at ksmps=1024) but other than that, it works beautifully straight out of the box!! You may claim one free beer at your next visit to Gothenburg, Sweden! Best regards, /Anders
|