1 // name: net relay - audio over UDP
2 // desc: the netin ugen takes audio on UDP
3 // and sends to out to another location
7 netin nin => Delay d => netout nout => blackhole;
9 100::ms => d.max => d.delay;
10 // set the incoming port
12 // set the outgoing destination
13 "nowhere.com" => nout.addr;
17 while( true ) { 100::ms => now; }