Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: sintetizador basico
name
code content
// ejemplificando cómo definir un sintetizador para utilizarlo despues SynthDef("sine", { | freq = 220, amp = 1 | Out.ar(0, SinOsc.ar( freq ) * amp ) }).send(s); z = Synth("sine") z.set(\freq,120) z.set(\amp,1) z.run(false) z.run(true) z.free
code description
use markdown for formating
category tags
comma separated, i.g. "wild, siren" (do not enter default SC class names, please)
ancestor(s)
comma separated identificators, i.g. "1-C,1-1,1-4M,1-x"
Private?
the code will be accessible by direct url and not visible in public activity
signup to submit public code without captcha
comment of change