I need to use two audio devices. I want to read buffers from one device and write it to the other device. ( device1 is a Blackmagic recorder and device2 is an external audio sound card )
I noticed ofSoundStream handles inputs and outputs but from same device.
I tried to use to ofSoundStream objects like that
soundStream1.setup(this, 0, 2, 48000, bufferSize, 2); //INS
soundStream2.setup(this, 2, 0, 48000, bufferSize, 2); //OUTS
With properly soundStreamX.setDeviceID(N); before setups but not works.
Any help or worksaround ?
Ps. I’m using ofxblackmagic2 for input vídeo frames with our audio support.