Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Waves & Surf
name
code content
// A.Broz: Waves & Surf (2020-10-29) /* _.====.._ ,:._ ~-_ `\ ~-_ | `. ,/ ~-_ -..__..-'' ~~--..__...----... */ ( ~waves = { var noise = { WhiteNoise.ar(0.04 + LFNoise1.kr(0.3, 0.03)) }; var motion = { LFNoise1.kr(0.2).exprange(100, 2000) }; var hps = { HPF.ar(noise.value, 50) }; var wave = { LPF.ar(hps.value, motion.value).tanh }; var sig = wave!10; sig = Splay.ar(sig, 0.6).tanh; sig = sig * Line.kr(0, 1, 10); // fade in LeakDC.ar(sig); }.play; ) ~waves release: 10;
code description
Simple relaxing white noise generator simulating a seaside.
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