SuperColliderAU - Audio Unit Wrapper

I have managed to interconnect SC and Logic through SuperColliderAU. 

“SuperColliderAU is an AudioUnit wrapper that allows using SuperCollider servers inside AudioUnits hosts on MacOSX. The embedded server may be controlled over OSC as usual. In addition, it may be packed with a synth definition and a configuration file that defines its parameters”. (SuperColliderAu Help File)

Here a simple example:

// SuperCollider Au

u = Server(\scau, NetAddr(“127.0.0.1”, sequencer’s instrument port here));
u.serverRunning = true;
u.ping(10);

// A ring-modulator effect
z = { AudioIn.ar([1,2]) * SinOsc.ar(MouseX.kr(100, 1000)) }.play(u)

I will post more on this. Next plan is to use my fiducial markers in order to change sound parameters which will originate from any instrument coming from Logic Studio.

Cygnus Wed, 08 December 2010, 08:34AM

  1. gestus-log posted this