Csound Csound-dev Csound-tekno Search About

[Csnd] Quick question on buses

Date2013-07-02 03:54
Fromlppier
Subject[Csnd] Quick question on buses
Hi,

I'm doing this to send my signal to a chorus instrument

gaChorusBus = gaChorusBus + a1

my chorus instrument

instr 102
ain = gaChorusBus
gaChorusBus = 0

klfo1 lfo 0.003, 1.0
klfo2 lfo 0.003, 0.8
aout delayr 0.1
atap1 deltapi 0.03+klfo1
atap2 deltapi 0.05+klfo2
  delayw ain + (atap1*0.3) + (atap2*0.3)

;atap1 balance atap1, ain*0.25
;atap2 balance atap2, ain*0.25
aoutL = atap1 * 0.2
aoutR = atap2 * 0.2
outs aoutL, aoutR

endin

Am I actually adding on to the original signal in this way? Say my original
signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
chorus instrument, right? 

If this is so, why isn't this doing the trick to "mix" the signal with the
chorus? I hear some slight distortion. 

gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
signal to send
a1 = a1 * 0.5 ; reduce original signal by 1/2

Thank you. 



--
View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
Sent from the Csound - General mailing list archive at Nabble.com.

Date2013-07-02 10:32
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] Quick question on buses
You are zeroing the gaChorusBus somewhere


> Hi,
>
> I'm doing this to send my signal to a chorus instrument
>
> gaChorusBus = gaChorusBus + a1
>
> my chorus instrument
>
> instr 102
> ain = gaChorusBus
> gaChorusBus = 0
>
> klfo1 lfo 0.003, 1.0
> klfo2 lfo 0.003, 0.8
> aout delayr 0.1
> atap1 deltapi 0.03+klfo1
> atap2 deltapi 0.05+klfo2
>   delayw ain + (atap1*0.3) + (atap2*0.3)
>
> ;atap1 balance atap1, ain*0.25
> ;atap2 balance atap2, ain*0.25
> aoutL = atap1 * 0.2
> aoutR = atap2 * 0.2
> outs aoutL, aoutR
>
> endin
>
> Am I actually adding on to the original signal in this way? Say my
> original
> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
> chorus instrument, right?
>
> If this is so, why isn't this doing the trick to "mix" the signal with the
> chorus? I hear some slight distortion.
>
> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
> signal to send
> a1 = a1 * 0.5 ; reduce original signal by 1/2
>
> Thank you.
>
>
>
> --
> View this message in context:
> http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
> 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-07-02 10:58
FromVictor Lazzarini
SubjectRe: [Csnd] Quick question on buses
here's an example of what you need to do:

gabus init 0

instr 1   ; sound generator, many instances

ksig expon 1, p3, 0.001
asig oscili   ksig*p4,p4,1
     out asig

gabus = gabus + asig*p6

endin

instr 100 ; effect, single instance

asig reverb gabus, 2
       
        out asig

gabus = 0

endin


On 2 Jul 2013, at 03:54, lppier wrote:

> Hi,
> 
> I'm doing this to send my signal to a chorus instrument
> 
> gaChorusBus = gaChorusBus + a1
> 
> my chorus instrument
> 
> instr 102
> ain = gaChorusBus
> gaChorusBus = 0
> 
> klfo1 lfo 0.003, 1.0
> klfo2 lfo 0.003, 0.8
> aout delayr 0.1
> atap1 deltapi 0.03+klfo1
> atap2 deltapi 0.05+klfo2
>  delayw ain + (atap1*0.3) + (atap2*0.3)
> 
> ;atap1 balance atap1, ain*0.25
> ;atap2 balance atap2, ain*0.25
> aoutL = atap1 * 0.2
> aoutR = atap2 * 0.2
> outs aoutL, aoutR
> 
> endin
> 
> Am I actually adding on to the original signal in this way? Say my original
> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
> chorus instrument, right? 
> 
> If this is so, why isn't this doing the trick to "mix" the signal with the
> chorus? I hear some slight distortion. 
> 
> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
> signal to send
> a1 = a1 * 0.5 ; reduce original signal by 1/2
> 
> Thank you. 
> 
> 
> 
> --
> View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
> Sent from the Csound - General mailing list archive at Nabble.com.
> 
> 
> 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"
> 

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie





Date2013-07-02 12:41
FromPier
SubjectRe: [Csnd] Quick question on buses
Hi Victor, that looks somewhat like what I'm doing, except gaBus is gaChorusBus.
I tried putting gaChorusBus = 0 after the outs , I'm still getting the slight distortion. 

Is my understanding correct? 

(1)
> gabus = gabus + asig*0.5 


Sends 1/2 of the asig to gabus which is read by reverb instrument. 
So effectively what is coming out of the speakers is :

asig + (asig*0.5 after going through the reverb) 

(2)
> gabus = 0 
clears the gabus so that subsequent signals will not get added on

Thanks.

Pier.



On 2 Jul, 2013, at 5:58 PM, Victor Lazzarini  wrote:

> here's an example of what you need to do:
> 
> gabus init 0
> 
> instr 1   ; sound generator, many instances
> 
> ksig expon 1, p3, 0.001
> asig oscili   ksig*p4,p4,1
>     out asig
> 
> gabus = gabus + asig*p6
> 
> endin
> 
> instr 100 ; effect, single instance
> 
> asig reverb gabus, 2
> 
>        out asig
> 
> gabus = 0
> 
> endin
> 
> 
> On 2 Jul 2013, at 03:54, lppier wrote:
> 
>> Hi,
>> 
>> I'm doing this to send my signal to a chorus instrument
>> 
>> gaChorusBus = gaChorusBus + a1
>> 
>> my chorus instrument
>> 
>> instr 102
>> ain = gaChorusBus
>> gaChorusBus = 0
>> 
>> klfo1 lfo 0.003, 1.0
>> klfo2 lfo 0.003, 0.8
>> aout delayr 0.1
>> atap1 deltapi 0.03+klfo1
>> atap2 deltapi 0.05+klfo2
>> delayw ain + (atap1*0.3) + (atap2*0.3)
>> 
>> ;atap1 balance atap1, ain*0.25
>> ;atap2 balance atap2, ain*0.25
>> aoutL = atap1 * 0.2
>> aoutR = atap2 * 0.2
>> outs aoutL, aoutR
>> 
>> endin
>> 
>> Am I actually adding on to the original signal in this way? Say my original
>> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
>> chorus instrument, right? 
>> 
>> If this is so, why isn't this doing the trick to "mix" the signal with the
>> chorus? I hear some slight distortion. 
>> 
>> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
>> signal to send
>> a1 = a1 * 0.5 ; reduce original signal by 1/2
>> 
>> Thank you. 
>> 
>> 
>> 
>> --
>> View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
>> Sent from the Csound - General mailing list archive at Nabble.com.
>> 
>> 
>> 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"
>> 
> 
> Dr Victor Lazzarini
> Senior Lecturer
> Dept. of Music
> NUI Maynooth Ireland
> tel.: +353 1 708 3545
> Victor dot Lazzarini AT nuim dot ie
> 
> 
> 
> 
> 
> 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-07-02 12:47
FromRory Walsh
SubjectRe: [Csnd] Quick question on buses
Should you not being reducing the level of your global signal by a half too?


On 2 July 2013 13:41, Pier  wrote:
> Hi Victor, that looks somewhat like what I'm doing, except gaBus is gaChorusBus.
> I tried putting gaChorusBus = 0 after the outs , I'm still getting the slight distortion.
>
> Is my understanding correct?
>
> (1)
>> gabus = gabus + asig*0.5
>
>
> Sends 1/2 of the asig to gabus which is read by reverb instrument.
> So effectively what is coming out of the speakers is :
>
> asig + (asig*0.5 after going through the reverb)
>
> (2)
>> gabus = 0
> clears the gabus so that subsequent signals will not get added on
>
> Thanks.
>
> Pier.
>
>
>
> On 2 Jul, 2013, at 5:58 PM, Victor Lazzarini  wrote:
>
>> here's an example of what you need to do:
>>
>> gabus init 0
>>
>> instr 1   ; sound generator, many instances
>>
>> ksig expon 1, p3, 0.001
>> asig oscili   ksig*p4,p4,1
>>     out asig
>>
>> gabus = gabus + asig*p6
>>
>> endin
>>
>> instr 100 ; effect, single instance
>>
>> asig reverb gabus, 2
>>
>>        out asig
>>
>> gabus = 0
>>
>> endin
>>
>>
>> On 2 Jul 2013, at 03:54, lppier wrote:
>>
>>> Hi,
>>>
>>> I'm doing this to send my signal to a chorus instrument
>>>
>>> gaChorusBus = gaChorusBus + a1
>>>
>>> my chorus instrument
>>>
>>> instr 102
>>> ain = gaChorusBus
>>> gaChorusBus = 0
>>>
>>> klfo1 lfo 0.003, 1.0
>>> klfo2 lfo 0.003, 0.8
>>> aout delayr 0.1
>>> atap1 deltapi 0.03+klfo1
>>> atap2 deltapi 0.05+klfo2
>>> delayw ain + (atap1*0.3) + (atap2*0.3)
>>>
>>> ;atap1 balance atap1, ain*0.25
>>> ;atap2 balance atap2, ain*0.25
>>> aoutL = atap1 * 0.2
>>> aoutR = atap2 * 0.2
>>> outs aoutL, aoutR
>>>
>>> endin
>>>
>>> Am I actually adding on to the original signal in this way? Say my original
>>> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
>>> chorus instrument, right?
>>>
>>> If this is so, why isn't this doing the trick to "mix" the signal with the
>>> chorus? I hear some slight distortion.
>>>
>>> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
>>> signal to send
>>> a1 = a1 * 0.5 ; reduce original signal by 1/2
>>>
>>> Thank you.
>>>
>>>
>>>
>>> --
>>> View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
>>> Sent from the Csound - General mailing list archive at Nabble.com.
>>>
>>>
>>> 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"
>>>
>>
>> Dr Victor Lazzarini
>> Senior Lecturer
>> Dept. of Music
>> NUI Maynooth Ireland
>> tel.: +353 1 708 3545
>> Victor dot Lazzarini AT nuim dot ie
>>
>>
>>
>>
>>
>> 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"
>>
>
>
>
> 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-07-02 13:06
FromPier
SubjectRe: [Csnd] Quick question on buses
Hi Rory, 

I tried your suggestion

gaChorusBus = gaChorusBus + a1*0.5
gaChorusBus = gaChorusBus*0.5
a1 = a1*0.5

But I'm still hearing the slight distortion. Or am I doing something wrong in the chorus instrument? 

instr 102
ain = gaChorusBus


klfo1 lfo 0.003, 1.0
klfo2 lfo 0.003, 0.8
aout delayr 0.1
atap1 deltapi 0.03+klfo1
atap2 deltapi 0.05+klfo2
delayw ain + (atap1*0.3) + (atap2*0.3)

aoutL = atap1 * 0.2
aoutR = atap2 * 0.2
outs aoutL, aoutR
gaChorusBus = 0
endin

Pier.



On 2 Jul, 2013, at 7:47 PM, Rory Walsh  wrote:

> Should you not being reducing the level of your global signal by a half too?
> 
> 
> On 2 July 2013 13:41, Pier  wrote:
>> Hi Victor, that looks somewhat like what I'm doing, except gaBus is gaChorusBus.
>> I tried putting gaChorusBus = 0 after the outs , I'm still getting the slight distortion.
>> 
>> Is my understanding correct?
>> 
>> (1)
>>> gabus = gabus + asig*0.5
>> 
>> 
>> Sends 1/2 of the asig to gabus which is read by reverb instrument.
>> So effectively what is coming out of the speakers is :
>> 
>> asig + (asig*0.5 after going through the reverb)
>> 
>> (2)
>>> gabus = 0
>> clears the gabus so that subsequent signals will not get added on
>> 
>> Thanks.
>> 
>> Pier.
>> 
>> 
>> 
>> On 2 Jul, 2013, at 5:58 PM, Victor Lazzarini  wrote:
>> 
>>> here's an example of what you need to do:
>>> 
>>> gabus init 0
>>> 
>>> instr 1   ; sound generator, many instances
>>> 
>>> ksig expon 1, p3, 0.001
>>> asig oscili   ksig*p4,p4,1
>>>    out asig
>>> 
>>> gabus = gabus + asig*p6
>>> 
>>> endin
>>> 
>>> instr 100 ; effect, single instance
>>> 
>>> asig reverb gabus, 2
>>> 
>>>       out asig
>>> 
>>> gabus = 0
>>> 
>>> endin
>>> 
>>> 
>>> On 2 Jul 2013, at 03:54, lppier wrote:
>>> 
>>>> Hi,
>>>> 
>>>> I'm doing this to send my signal to a chorus instrument
>>>> 
>>>> gaChorusBus = gaChorusBus + a1
>>>> 
>>>> my chorus instrument
>>>> 
>>>> instr 102
>>>> ain = gaChorusBus
>>>> gaChorusBus = 0
>>>> 
>>>> klfo1 lfo 0.003, 1.0
>>>> klfo2 lfo 0.003, 0.8
>>>> aout delayr 0.1
>>>> atap1 deltapi 0.03+klfo1
>>>> atap2 deltapi 0.05+klfo2
>>>> delayw ain + (atap1*0.3) + (atap2*0.3)
>>>> 
>>>> ;atap1 balance atap1, ain*0.25
>>>> ;atap2 balance atap2, ain*0.25
>>>> aoutL = atap1 * 0.2
>>>> aoutR = atap2 * 0.2
>>>> outs aoutL, aoutR
>>>> 
>>>> endin
>>>> 
>>>> Am I actually adding on to the original signal in this way? Say my original
>>>> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
>>>> chorus instrument, right?
>>>> 
>>>> If this is so, why isn't this doing the trick to "mix" the signal with the
>>>> chorus? I hear some slight distortion.
>>>> 
>>>> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
>>>> signal to send
>>>> a1 = a1 * 0.5 ; reduce original signal by 1/2
>>>> 
>>>> Thank you.
>>>> 
>>>> 
>>>> 
>>>> --
>>>> View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
>>>> Sent from the Csound - General mailing list archive at Nabble.com.
>>>> 
>>>> 
>>>> 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"
>>>> 
>>> 
>>> Dr Victor Lazzarini
>>> Senior Lecturer
>>> Dept. of Music
>>> NUI Maynooth Ireland
>>> tel.: +353 1 708 3545
>>> Victor dot Lazzarini AT nuim dot ie
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 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"
>>> 
>> 
>> 
>> 
>> 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"
>> 
> 
> 
> 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-07-02 13:07
FromPier
SubjectRe: [Csnd] Quick question on buses
One thing is that the volume isn't particularly loud. So it may not be distortion due to overloading..

Pier.



On 2 Jul, 2013, at 8:06 PM, Pier  wrote:

> Hi Rory, 
> 
> I tried your suggestion
> 
> gaChorusBus = gaChorusBus + a1*0.5
> gaChorusBus = gaChorusBus*0.5
> a1 = a1*0.5
> 
> But I'm still hearing the slight distortion. Or am I doing something wrong in the chorus instrument? 
> 
> instr 102
> ain = gaChorusBus
> 
> 
> klfo1 lfo 0.003, 1.0
> klfo2 lfo 0.003, 0.8
> aout delayr 0.1
> atap1 deltapi 0.03+klfo1
> atap2 deltapi 0.05+klfo2
> delayw ain + (atap1*0.3) + (atap2*0.3)
> 
> aoutL = atap1 * 0.2
> aoutR = atap2 * 0.2
> outs aoutL, aoutR
> gaChorusBus = 0
> endin
> 
> Pier.
> 
> 
> 
> On 2 Jul, 2013, at 7:47 PM, Rory Walsh  wrote:
> 
>> Should you not being reducing the level of your global signal by a half too?
>> 
>> 
>> On 2 July 2013 13:41, Pier  wrote:
>>> Hi Victor, that looks somewhat like what I'm doing, except gaBus is gaChorusBus.
>>> I tried putting gaChorusBus = 0 after the outs , I'm still getting the slight distortion.
>>> 
>>> Is my understanding correct?
>>> 
>>> (1)
>>>> gabus = gabus + asig*0.5
>>> 
>>> 
>>> Sends 1/2 of the asig to gabus which is read by reverb instrument.
>>> So effectively what is coming out of the speakers is :
>>> 
>>> asig + (asig*0.5 after going through the reverb)
>>> 
>>> (2)
>>>> gabus = 0
>>> clears the gabus so that subsequent signals will not get added on
>>> 
>>> Thanks.
>>> 
>>> Pier.
>>> 
>>> 
>>> 
>>> On 2 Jul, 2013, at 5:58 PM, Victor Lazzarini  wrote:
>>> 
>>>> here's an example of what you need to do:
>>>> 
>>>> gabus init 0
>>>> 
>>>> instr 1   ; sound generator, many instances
>>>> 
>>>> ksig expon 1, p3, 0.001
>>>> asig oscili   ksig*p4,p4,1
>>>>   out asig
>>>> 
>>>> gabus = gabus + asig*p6
>>>> 
>>>> endin
>>>> 
>>>> instr 100 ; effect, single instance
>>>> 
>>>> asig reverb gabus, 2
>>>> 
>>>>      out asig
>>>> 
>>>> gabus = 0
>>>> 
>>>> endin
>>>> 
>>>> 
>>>> On 2 Jul 2013, at 03:54, lppier wrote:
>>>> 
>>>>> Hi,
>>>>> 
>>>>> I'm doing this to send my signal to a chorus instrument
>>>>> 
>>>>> gaChorusBus = gaChorusBus + a1
>>>>> 
>>>>> my chorus instrument
>>>>> 
>>>>> instr 102
>>>>> ain = gaChorusBus
>>>>> gaChorusBus = 0
>>>>> 
>>>>> klfo1 lfo 0.003, 1.0
>>>>> klfo2 lfo 0.003, 0.8
>>>>> aout delayr 0.1
>>>>> atap1 deltapi 0.03+klfo1
>>>>> atap2 deltapi 0.05+klfo2
>>>>> delayw ain + (atap1*0.3) + (atap2*0.3)
>>>>> 
>>>>> ;atap1 balance atap1, ain*0.25
>>>>> ;atap2 balance atap2, ain*0.25
>>>>> aoutL = atap1 * 0.2
>>>>> aoutR = atap2 * 0.2
>>>>> outs aoutL, aoutR
>>>>> 
>>>>> endin
>>>>> 
>>>>> Am I actually adding on to the original signal in this way? Say my original
>>>>> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
>>>>> chorus instrument, right?
>>>>> 
>>>>> If this is so, why isn't this doing the trick to "mix" the signal with the
>>>>> chorus? I hear some slight distortion.
>>>>> 
>>>>> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
>>>>> signal to send
>>>>> a1 = a1 * 0.5 ; reduce original signal by 1/2
>>>>> 
>>>>> Thank you.
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
>>>>> Sent from the Csound - General mailing list archive at Nabble.com.
>>>>> 
>>>>> 
>>>>> 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"
>>>>> 
>>>> 
>>>> Dr Victor Lazzarini
>>>> Senior Lecturer
>>>> Dept. of Music
>>>> NUI Maynooth Ireland
>>>> tel.: +353 1 708 3545
>>>> Victor dot Lazzarini AT nuim dot ie
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 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"
>>>> 
>>> 
>>> 
>>> 
>>> 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"
>>> 
>> 
>> 
>> 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-07-02 13:45
FromRory Walsh
SubjectRe: [Csnd] Quick question on buses
I'm not sure, I've never used deltapi in instruments where I've need
variable delay times. I usually use vdelay:

ain = gaChorusBus
alfo1 lfo 0.003, 1
alfo2 lfo 0.008, .8
adel1 vdelay ain1, alfo1, 1000
adel2 vdelay ain1, alfo2, 1000
outs adel1*.3, adel2*.3


of course you can always write some sound to disk, and then open it in
an audio editor to see if it's actually hard clipped? Just add the
following to your chorus instrument:

fout "test.wav", 16, adel1, adel2

Date2013-07-02 14:32
FromVictor Lazzarini
SubjectRe: [Csnd] Quick question on buses
Try using audio rate oscillators in the chorus modulation. That is probably the source of your distortion.
The bus code is OK.
On 2 Jul 2013, at 13:06, Pier wrote:

> Hi Rory, 
> 
> I tried your suggestion
> 
> gaChorusBus = gaChorusBus + a1*0.5
> gaChorusBus = gaChorusBus*0.5
> a1 = a1*0.5
> 
> But I'm still hearing the slight distortion. Or am I doing something wrong in the chorus instrument? 
> 
> instr 102
> ain = gaChorusBus
> 
> 
> klfo1 lfo 0.003, 1.0
> klfo2 lfo 0.003, 0.8
> aout delayr 0.1
> atap1 deltapi 0.03+klfo1
> atap2 deltapi 0.05+klfo2
> delayw ain + (atap1*0.3) + (atap2*0.3)
> 
> aoutL = atap1 * 0.2
> aoutR = atap2 * 0.2
> outs aoutL, aoutR
> gaChorusBus = 0
> endin
> 
> Pier.
> 
> 
> 
> On 2 Jul, 2013, at 7:47 PM, Rory Walsh  wrote:
> 
>> Should you not being reducing the level of your global signal by a half too?
>> 
>> 
>> On 2 July 2013 13:41, Pier  wrote:
>>> Hi Victor, that looks somewhat like what I'm doing, except gaBus is gaChorusBus.
>>> I tried putting gaChorusBus = 0 after the outs , I'm still getting the slight distortion.
>>> 
>>> Is my understanding correct?
>>> 
>>> (1)
>>>> gabus = gabus + asig*0.5
>>> 
>>> 
>>> Sends 1/2 of the asig to gabus which is read by reverb instrument.
>>> So effectively what is coming out of the speakers is :
>>> 
>>> asig + (asig*0.5 after going through the reverb)
>>> 
>>> (2)
>>>> gabus = 0
>>> clears the gabus so that subsequent signals will not get added on
>>> 
>>> Thanks.
>>> 
>>> Pier.
>>> 
>>> 
>>> 
>>> On 2 Jul, 2013, at 5:58 PM, Victor Lazzarini  wrote:
>>> 
>>>> here's an example of what you need to do:
>>>> 
>>>> gabus init 0
>>>> 
>>>> instr 1   ; sound generator, many instances
>>>> 
>>>> ksig expon 1, p3, 0.001
>>>> asig oscili   ksig*p4,p4,1
>>>>   out asig
>>>> 
>>>> gabus = gabus + asig*p6
>>>> 
>>>> endin
>>>> 
>>>> instr 100 ; effect, single instance
>>>> 
>>>> asig reverb gabus, 2
>>>> 
>>>>      out asig
>>>> 
>>>> gabus = 0
>>>> 
>>>> endin
>>>> 
>>>> 
>>>> On 2 Jul 2013, at 03:54, lppier wrote:
>>>> 
>>>>> Hi,
>>>>> 
>>>>> I'm doing this to send my signal to a chorus instrument
>>>>> 
>>>>> gaChorusBus = gaChorusBus + a1
>>>>> 
>>>>> my chorus instrument
>>>>> 
>>>>> instr 102
>>>>> ain = gaChorusBus
>>>>> gaChorusBus = 0
>>>>> 
>>>>> klfo1 lfo 0.003, 1.0
>>>>> klfo2 lfo 0.003, 0.8
>>>>> aout delayr 0.1
>>>>> atap1 deltapi 0.03+klfo1
>>>>> atap2 deltapi 0.05+klfo2
>>>>> delayw ain + (atap1*0.3) + (atap2*0.3)
>>>>> 
>>>>> ;atap1 balance atap1, ain*0.25
>>>>> ;atap2 balance atap2, ain*0.25
>>>>> aoutL = atap1 * 0.2
>>>>> aoutR = atap2 * 0.2
>>>>> outs aoutL, aoutR
>>>>> 
>>>>> endin
>>>>> 
>>>>> Am I actually adding on to the original signal in this way? Say my original
>>>>> signal a1 is amplitude 1.0, now it'll be 1.0 + whatever the output of the
>>>>> chorus instrument, right?
>>>>> 
>>>>> If this is so, why isn't this doing the trick to "mix" the signal with the
>>>>> chorus? I hear some slight distortion.
>>>>> 
>>>>> gaChorusBus = gaChorusBus + a1 * 0.5 ; 0.5 is the amount of the original
>>>>> signal to send
>>>>> a1 = a1 * 0.5 ; reduce original signal by 1/2
>>>>> 
>>>>> Thank you.
>>>>> 
>>>>> 
>>>>> 
>>>>> --
>>>>> View this message in context: http://csound.1045644.n5.nabble.com/Quick-question-on-buses-tp5725095.html
>>>>> Sent from the Csound - General mailing list archive at Nabble.com.
>>>>> 
>>>>> 
>>>>> 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"
>>>>> 
>>>> 
>>>> Dr Victor Lazzarini
>>>> Senior Lecturer
>>>> Dept. of Music
>>>> NUI Maynooth Ireland
>>>> tel.: +353 1 708 3545
>>>> Victor dot Lazzarini AT nuim dot ie
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 
>>>> 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"
>>>> 
>>> 
>>> 
>>> 
>>> 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"
>>> 
>> 
>> 
>> 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"
>> 
> 
> 
> 
> 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"
> 

Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie