ofxAudioUnit
ofxAudioUnit copied to clipboard
get ofxAudioUnitNetSend / receive working
I was hoping you could show me how to setup net send and receive.
it seems only one app can run, the other gets blocked until the first exits.
do you know why?
sender
netSend.setName("test9999");
netSend.setPort(9999);
speechSynth.connectTo(tap).connectTo(netSend);
activeUnit = &speechSynth;
receiver
netReceive.connectToHost("127.0.0.1"); //,9999);
netReceive.connectTo(tap).connectTo(output);
activeUnit = &netReceive;