10.3 Network Music Lab
10.3 Network Music Lab
//This sets up connections to the various IP addresses around the network: you will
need to update this code to reflect your local setup
(
a = [190, 30, 198, 200,196, 227].collect({ arg el;
Server("test"++el, NetAddr("139.184.50." ++ el, 57110))
});
)
//automate Synth grain firing once around the Servers in random order
(
{
10.do { arg el, i;
Synth.grain(\finesine, [\freq, 1000 +(i*200)], a.choose);
0.1.wait;
}
}.fork;
)