Csound Csound-dev Csound-tekno Search About

[Csnd] Globals, Zak space, Signal Flow, ...

Date2009-11-29 11:44
Fromfrancibal
Subject[Csnd] Globals, Zak space, Signal Flow, ...
Dear List,
i have made a simple real time looper in csound. I have a trivial gui in
python tkinter, or an external midi controller. The purpose is only take a
real time audio input and then looping this and then apply some simple fx
like reverb or ...

This is my question:

in the csd i can use only one instrument for all the audio path, but i would
prefer to separate every work into a different instrument. Now i would like
to know about efficiency of different way to do that, i.e. globals audio
variables, zak space, last signal flow graph of Mr. Gogins, or ?

Are these more or less expensive in computation or are all the same?

Thanks,

ciao,
fran.
 

Date2009-11-29 13:04
FromVictor Lazzarini
Subject[Csnd] Re: Globals, Zak space, Signal Flow, ...
You can use audio channels as well (chn* opcodes).

On 29 Nov 2009, at 11:44, francibal wrote:

>
> Dear List,
> i have made a simple real time looper in csound. I have a trivial  
> gui in
> python tkinter, or an external midi controller. The purpose is only  
> take a
> real time audio input and then looping this and then apply some  
> simple fx
> like reverb or ...
>
> This is my question:
>
> in the csd i can use only one instrument for all the audio path, but  
> i would
> prefer to separate every work into a different instrument. Now i  
> would like
> to know about efficiency of different way to do that, i.e. globals  
> audio
> variables, zak space, last signal flow graph of Mr. Gogins, or ?
>
> Are these more or less expensive in computation or are all the same?
>
> Thanks,
>
> ciao,
> fran.
>
> -- 
> View this message in context: http://old.nabble.com/Globals%2C-Zak-space%2C-Signal-Flow%2C-...-tp26560495p26560495.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body  
> "unsubscribe csound"



Send bugs reports to this list.
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2009-11-29 13:14
From"ilterzouomo"
Subject[Csnd] Re: Re: Globals, Zak space, Signal Flow, ...
Can i use chn opcode for internal communications (from instr to instr, into 
a single csd)? Are they not only for external (via API)?

Thanks,

ciao,
fran.
----- Original Message ----- 
From: "Victor Lazzarini" 
To: 
Sent: Sunday, November 29, 2009 2:04 PM
Subject: [Csnd] Re: Globals, Zak space, Signal Flow, ...


> You can use audio channels as well (chn* opcodes).
>
> On 29 Nov 2009, at 11:44, francibal wrote:
>
>>
>> Dear List,
>> i have made a simple real time looper in csound. I have a trivial  gui in
>> python tkinter, or an external midi controller. The purpose is only  take 
>> a
>> real time audio input and then looping this and then apply some  simple 
>> fx
>> like reverb or ...
>>
>> This is my question:
>>
>> in the csd i can use only one instrument for all the audio path, but  i 
>> would
>> prefer to separate every work into a different instrument. Now i  would 
>> like
>> to know about efficiency of different way to do that, i.e. globals  audio
>> variables, zak space, last signal flow graph of Mr. Gogins, or ?
>>
>> Are these more or less expensive in computation or are all the same?
>>
>> Thanks,
>>
>> ciao,
>> fran.
>>
>> -- 
>> View this message in context: 
>> http://old.nabble.com/Globals%2C-Zak-space%2C-Signal-Flow%2C-...-tp26560495p26560495.html
>> Sent from the Csound - General mailing list archive at Nabble.com.
>>
>>
>>
>> Send bugs reports to this list.
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body  "unsubscribe 
>> csound"
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe 
> csound" 



Send bugs reports to this list.
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"

Date2009-11-29 16:35
FromMichael Gogins
Subject[Csnd] Re: Globals, Zak space, Signal Flow, ...
I think globals or zak would be the most efficient, but probably the
signal flow graph would be easier to set up and should be efficient
enough. I have not done any comparative tests, though.

Regards,
Mike

On 11/29/09, francibal  wrote:
>
> Dear List,
> i have made a simple real time looper in csound. I have a trivial gui in
> python tkinter, or an external midi controller. The purpose is only take a
> real time audio input and then looping this and then apply some simple fx
> like reverb or ...
>
> This is my question:
>
> in the csd i can use only one instrument for all the audio path, but i would
> prefer to separate every work into a different instrument. Now i would like
> to know about efficiency of different way to do that, i.e. globals audio
> variables, zak space, last signal flow graph of Mr. Gogins, or ?
>
> Are these more or less expensive in computation or are all the same?
>
> Thanks,
>
> ciao,
> fran.
>
> --
> View this message in context:
> http://old.nabble.com/Globals%2C-Zak-space%2C-Signal-Flow%2C-...-tp26560495p26560495.html
> Sent from the Csound - General mailing list archive at Nabble.com.
>
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>

Date2009-11-29 22:43
Fromthorin kerr
Subject[Csnd] Re: Re: Globals, Zak space, Signal Flow, ...
I'm quite fond of the Mixer opcodes myself. MixerReceive, MixerSend
etc...  It's a nice model, and relatively easy to do on-the-fly signal
routing with them.

Tk




On Mon, Nov 30, 2009 at 2:35 AM, Michael Gogins
 wrote:
> I think globals or zak would be the most efficient, but probably the
> signal flow graph would be easier to set up and should be efficient
> enough. I have not done any comparative tests, though.
>
> Regards,
> Mike
>
> On 11/29/09, francibal  wrote:
>>
>> Dear List,
>> i have made a simple real time looper in csound. I have a trivial gui in
>> python tkinter, or an external midi controller. The purpose is only take a
>> real time audio input and then looping this and then apply some simple fx
>> like reverb or ...
>>
>> This is my question:
>>
>> in the csd i can use only one instrument for all the audio path, but i would
>> prefer to separate every work into a different instrument. Now i would like
>> to know about efficiency of different way to do that, i.e. globals audio
>> variables, zak space, last signal flow graph of Mr. Gogins, or ?
>>
>> Are these more or less expensive in computation or are all the same?
>>
>> Thanks,
>>
>> ciao,
>> fran.
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Globals%2C-Zak-space%2C-Signal-Flow%2C-...-tp26560495p26560495.html
>> Sent from the Csound - General mailing list archive at Nabble.com.
>>
>>
>>
>> Send bugs reports to this list.
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>
>
> --
> Michael Gogins
> Irreducible Productions
> http://www.michael-gogins.com
> Michael dot Gogins at gmail dot com
>
>
> Send bugs reports to this list.
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>


Send bugs reports to this list.
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"