Always-on computer music
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

3 anos atrás
3 anos atrás
3 anos atrás
12345678910111213141516171819
  1. s = Server.local;
  2. s.waitForBoot {
  3. var module, sound;
  4. // Connect to OSC
  5. thisProcess.openUDPPort(5005);
  6. n = NetAddr.new("0.0.0.0", 5005);
  7. o = OSCFunc({ arg msg, time, addr, recvPort; [msg, time, addr, recvPort].postln; }, '/radio', n);
  8. OSCFunc.trace(true);
  9. // Create the synth definition and load it
  10. module = SynthDef.new("module", { arg hue, saturation, value;
  11. Out.ar(0, SinOsc.ar(MouseX.kr(220, 1000)));
  12. });
  13. module.load(s);
  14. // Make a sound
  15. sound = Synth.new("module", [\hue, 440, \saturation, 100, \value, 500]);
  16. };