Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: vibrato
name
code content
( SynthDef("vibrato", {arg freq=440, release=0.1; var x, sig,out, mod1, depth, mfreq,maxfreq, maxdepth, maxdelay, basedelay; maxfreq=5; maxdelay=0.1; basedelay=maxdelay/2; maxdepth=basedelay/2; depth = MouseY.kr(0,maxdepth); mfreq = MouseX.kr(0,maxfreq); mod1 = SinOsc.ar(mfreq,0,depth); sig = SoundIn.ar(0,mul:2); x = DelayC.ar(sig, maxdelay,basedelay+ mod1); out = x;// FreeVerb.ar(x,MouseX.kr(0,1),MouseY.kr(0,1), 0.1); Out.ar(0,out); Out.ar(1,out); }).load(s); ) a = Synth("vibrato"); a.free
code description
it goes beyond vibrato too
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