ofxAudioUnit icon indicating copy to clipboard operation
ofxAudioUnit copied to clipboard

get ofxAudioUnitNetSend / receive working

Open stephanschulz opened this issue 6 years ago • 0 comments

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;

stephanschulz avatar Mar 15 '18 22:03 stephanschulz