Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: MoaningDialogue Synth
name
code content
a = Synth(\MoaningDialogue) //COOL TWEAKS //AngryTweak a.set(\feedback, 29,\freq, 6) //CalmTweak a.set(\feedback, 60, \freq, 0.8) //WeirdTweak a.set(\feedback, 2.8, \freq, 2) ( SynthDef(\MoaningDialogue, { |rateL = 0.2, rateR = 0.3, freq = 2, feedback = 50, mul = 1 , lpfreq = 2500| Out.ar(0, FreeVerb.ar( BLowPass.ar( SinOscFB.ar( LFDNoise1.kr([rateL, rateR], freq), feedback; , mul), lpfreq, 0.2 ), 0.3, 0.0 ) )} ).add )
code description
One of the first synths I made. A frog-like sounding synth, with a dialogue between the left and the right channel. I've also notated some simple tweaks.
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