Page 1 of 1
How do I receive audio from multiple tracks?
Posted: Fri Oct 14, 2011 4:28 pm
by deHaan
Hi there
Probably a very basic question:
How do I get input from other tracks than the track my max for live effect is on? Right now I'm using the "plugin~", which only takes the audio from that track...
Hope you can help me
Best regards Nikolaj
Re: How do I receive audio from multiple tracks?
Posted: Sat Oct 15, 2011 2:51 pm
by deHaan
No help from you guys?
Or is this impossible to do with M4L? I want to use different audio tracks for controlling different parameters in my Jitter patch...
Re: How do I receive audio from multiple tracks?
Posted: Sat Oct 15, 2011 4:22 pm
by S4racen
use sends to get the audio to your device sitting on a return track....
Cheers
D
Re: How do I receive audio from multiple tracks?
Posted: Sat Oct 15, 2011 4:28 pm
by deHaan
But then all the audio will be mixed together right? I want the signals as individual inputs in my patch. So that the audio signals can control different parameters on my video effects...
Re: How do I receive audio from multiple tracks?
Posted: Sun Oct 16, 2011 12:26 am
by pucklermuskau
use separate patches, monitor the incoming audio then convert it into a value, then use a send object to route all those values to your main patch.
Re: How do I receive audio from multiple tracks?
Posted: Sun Oct 16, 2011 9:10 am
by deHaan
Ahaa great, that was what I was looking for

Thank you!
Re: How do I receive audio from multiple tracks?
Posted: Sun Oct 23, 2011 3:34 pm
by deHaan
Now I've been experimenting a little with patches using the "send"-object. But they tend to increase my CPU-use quite a lot. Any suggestions about how to avoid this?

Re: How do I receive audio from multiple tracks?
Posted: Sun Oct 23, 2011 3:55 pm
by broc
I think CPU load depends on the rate at which you are sending values.
Try using a rate as low as possible. Packing multiple values into a list may help too.
Alternatively, you could use udpsend/udpreceive for transmitting data across devices.
It's probably more efficient regarding CPU load.
Re: How do I receive audio from multiple tracks?
Posted: Mon Nov 07, 2011 4:55 pm
by pucklermuskau
if you're monitoring an audio input, the snapshot~ object can specify a particular frequency of the sampling, if you don't need the high frequency then this can really cut down on the load. The other thing to do would be to bang the snapshot~ object when you need a sample, instead of having it continually spitting out values...