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