SuperCollider basics
I’ m finally going to start working on my blog and I’m just going to write the basics of supercollider and just hope its correct…
cmd + n to start a new file
s.boot to boot the system
.play to play the sound
cmd + . to stop the sound
UGens (unit generators) are used to process audio or control signals and arguments such as Frequency, Phase, Multiply, Addition are stated in the Ugen.. Some examples of UGens is:
{WhiteNoise.ar}
{PinkNoise.ar}
{Dust.ar}
{Impulse.ar}
{Crackle.ar}
(.ar = audio rate)
Advertisement