-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Connecting multichannel input to taps #24
Comments
trying to hack a
is ofxAudioInput set up for devices with multiple inputs? |
Hey Jason, it's been long enough since I wrote this that I don't really know the answers off hand. Here's some thoughts though:
Let me know how it goes |
Hi Adam,
I'm trying to connect the inputs from an instance of ofxAudioUnitInput set to a multichannel device to multiple taps. The goal is to have the samples from each live input in realtime.
When i try this:
input.connectTo(*taps[i], 0, i);
I get an error: No matching member function for call to 'connectTo'
However this is the only member function:
ofxAudioUnit& connectTo(ofxAudioUnit &otherUnit, int destinationBus = 0, int sourceBus = 0); using ofxAudioUnit::connectTo; // for connectTo(ofxAudioUnitTap&)
So how would I go about connecting my ofxAudioUnitInput to multiple ofxAudioUnitTaps?
The text was updated successfully, but these errors were encountered: