sc
module reference
sc
module reference
SuperCollider integration.
index
- Play a SuperCollider SynthDef on events.
- Play a SuperCollider SynthDef on bangs.
details
- Play a SuperCollider SynthDef on events.
(play [socket] synth ctrls)
Plays the synth
synth
on theudp/socket
socket
whenever an event arrives.socket
should be audp/socket
value. This argument can be omitted and the value be passed as a dynamic definition in*sock*
instead.synth
is the SC synthdef name. It should be a string-value.ctrls
is a struct of synthdef controls. It should be a !-stream.
- Play a SuperCollider SynthDef on bangs.
(play [socket] synth trig ctrls)
Plays the synth
synth
on theudp/socket
socket
whenevertrig
is live.socket
should be audp/socket
value. This argument can be omitted and the value be passed as a dynamic definition in*sock*
instead.synth
is the SC synthdef name. It should be a string-value.trig
is the trigger signal. It should be a !-stream of bang-events.ctrls
is a struct of synthdef controls. It should be a ~-stream.