Csound Csound-dev Csound-tekno Search About

[Csnd] Smoothly toggle between pconvolves

Date2013-02-16 21:47
FromAnders 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

Date2013-02-16 22:28
FromTakahiko Tsuchiya
SubjectRe: [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:

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

Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-02-17 00:45
FromRory Walsh
SubjectRe: [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.



-+rtaudio=alsa -odac:hw:1,0


0dbfs = 1
ksmps = 60
nchnls = 2


;Fade IO opcode. Rory Walsh
;
;Syntax:
;kLeft, kRight fadeIO trigger, kdur, kamp
;
;trigger: 	toggling between 0 and 1 will trigger the fading
;kdur: 		duration of the fade in seconds
;kamp:		amp scaling factor (0-1)


opcode fadeIO, kk, kkk
ksig init 0
setksmps 1
ktrig, kRise, kamp xin	
if(ktrig==1) then
	kRise = 1/kRise			;set increment size
	ksig = ksig+(kRise/sr)		;rise
	ksig = (ksig>1 ? 1 : ksig)	;limit
	elseif(ktrig==0) then
	kRise = 1/kRise			;set increment size
	ksig = ksig-(kRise/sr)		;fall
	ksig = (ksig<0 ? 0 : ksig)	;limit
endif
xout ksig*kamp, (1-ksig)*kamp
endop

instr 1
;different signals
asig1 oscil 1, 200, 1
asig2 oscil 1, 300, 1

;create simple trigger mech. Toggles between 0 and 1
ktrig oscil 1, .3, 2
ktrig = round(abs(ktrig))

kleft, kright fadeIO ktrig, 1, 1
outs kleft*asig1, kright*asig2

endin



f1 0 1024 10 1
f2 0 2 2 0 1
i1 0 100



Date2013-02-17 11:17
FromTakahiko Tsuchiya
SubjectRe: [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
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.

<CsoundSynthesizer>
<CsOptions>
-+rtaudio=alsa -odac:hw:1,0
</CsOptions>
<CsInstruments>
0dbfs = 1
ksmps = 60
nchnls = 2


;Fade IO opcode. Rory Walsh
;
;Syntax:
;kLeft, kRight fadeIO trigger, kdur, kamp
;
;trigger:       toggling between 0 and 1 will trigger the fading
;kdur:          duration of the fade in seconds
;kamp:          amp scaling factor (0-1)


opcode fadeIO, kk, kkk
ksig init 0
setksmps 1
ktrig, kRise, kamp xin
if(ktrig==1) then
        kRise = 1/kRise                 ;set increment size
        ksig = ksig+(kRise/sr)          ;rise
        ksig = (ksig>1 ? 1 : ksig)      ;limit
        elseif(ktrig==0) then
        kRise = 1/kRise                 ;set increment size
        ksig = ksig-(kRise/sr)          ;fall
        ksig = (ksig<0 ? 0 : ksig)      ;limit
endif
xout ksig*kamp, (1-ksig)*kamp
endop

instr 1
;different signals
asig1 oscil 1, 200, 1
asig2 oscil 1, 300, 1

;create simple trigger mech. Toggles between 0 and 1
ktrig oscil 1, .3, 2
ktrig = round(abs(ktrig))

kleft, kright fadeIO ktrig, 1, 1
outs kleft*asig1, kright*asig2

endin

</CsInstruments>
<CsScore>
f1 0 1024 10 1
f2 0 2 2 0 1
i1 0 100
</CsScore>
</CsoundSynthesizer>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2013-02-17 11:38
FromRory Walsh
SubjectRe: [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!?

Date2013-02-17 17:28
FromAnders Genell
SubjectRe: [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



17 feb 2013 kl. 12:17 skrev Takahiko Tsuchiya <turbo@f.email.ne.jp>:

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
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.

<CsoundSynthesizer>
<CsOptions>
-+rtaudio=alsa -odac:hw:1,0
</CsOptions>
<CsInstruments>
0dbfs = 1
ksmps = 60
nchnls = 2


;Fade IO opcode. Rory Walsh
;
;Syntax:
;kLeft, kRight fadeIO trigger, kdur, kamp
;
;trigger:       toggling between 0 and 1 will trigger the fading
;kdur:          duration of the fade in seconds
;kamp:          amp scaling factor (0-1)


opcode fadeIO, kk, kkk
ksig init 0
setksmps 1
ktrig, kRise, kamp xin
if(ktrig==1) then
        kRise = 1/kRise                 ;set increment size
        ksig = ksig+(kRise/sr)          ;rise
        ksig = (ksig>1 ? 1 : ksig)      ;limit
        elseif(ktrig==0) then
        kRise = 1/kRise                 ;set increment size
        ksig = ksig-(kRise/sr)          ;fall
        ksig = (ksig<0 ? 0 : ksig)      ;limit
endif
xout ksig*kamp, (1-ksig)*kamp
endop

instr 1
;different signals
asig1 oscil 1, 200, 1
asig2 oscil 1, 300, 1

;create simple trigger mech. Toggles between 0 and 1
ktrig oscil 1, .3, 2
ktrig = round(abs(ktrig))

kleft, kright fadeIO ktrig, 1, 1
outs kleft*asig1, kright*asig2

endin

</CsInstruments>
<CsScore>
f1 0 1024 10 1
f2 0 2 2 0 1
i1 0 100
</CsScore>
</CsoundSynthesizer>


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"