Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: X-Files
name
code content
( ~name = 'xfiles'; SynthDef(~name, { arg out=0, amp=0.1, gate=1, pan=0, spread=0.8, freq=200, doneAction=2, ifreq=5, maxdelaytime=0.05, delaytime= 0.05, decaytime=0.2, ffreq=1000, rq=0.3; var sig, sig1, sig2, sig3; sig = BPF.ar( Pluck.ar( Crackle.ar(\crackle.kr([1.9,1.8])), Impulse.ar(ifreq), maxdelaytime, delaytime, decaytime ), ffreq, rq ); sig = sig * EnvGen.ar(\adsr.kr(Env.adsr(0.01,0.1,0.8,0.1)),gate,doneAction:doneAction); sig = Splay.ar(sig, spread, amp, pan); Out.ar(out, sig); }).add; ); ( Pdef(~name, Pbind( \instrument, ~name, \maxdelaytime, 0.15, \delaytime, Pwhite(0.0001,0.010), \ifreq, Pseq([3,5.2,2,4.33],inf), \ifreq, Pwhite(4.1,18.1), \legato, 1.5, \dur, 1/8 * Pwhite(0.9,1.9), \amp, 4.0 )).play; );
code description
I always liked this sound when watching X-Files, then I re-created it by chance =) (fork of the tweet 0007 by redFrik)
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