*** empty log message ***
[chuck-blob.git] / exile / v1 / examples / net_relay.ck
blob3de3560a97ad711a062859880edb80263b0f940a
1 // name: net relay - audio over UDP
2 // desc: the netin ugen takes audio on UDP
3 //       and sends to out to another location
4 //       with an added delay
6 // relay with delay
7 netin nin => Delay d => netout nout => blackhole;
8 // set the delay
9 100::ms => d.max => d.delay;
10 // set the incoming port
11 8890 => nin.port;
12 // set the outgoing destination
13 "nowhere.com" => nout.addr;
14 8890 => nout.port;
16 // infinite time loop
17 while( true ) { 100::ms => now; }