Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Wave-like
name
code content
( Ndef(\waves, { var sig, n=25, ffreq, rq, lfo, amp; ffreq = Array.fill(n, { exprand(100.0, 1500.0) }); rq = Array.fill(n, { rrand(0.8, 1.4) }); lfo = Array.fill(n, { LFNoise2.ar(0.2).range(0.5, 2.0) }); amp = Array.fill(n, { LFNoise2.ar(0.33) }); sig = BPF.ar( PinkNoise.ar( amp * Slew.ar(lfo, 0.25) ).atan.tanh, ffreq * Slew.ar(lfo, 1, 0.25), rq * Slew.ar(lfo, 0.25) ); Splay.ar(sig, 0.9) }); ) Ndef(\waves).fadeTime = 5; Ndef(\waves).gui; Ndef(\waves).stop; Ndef(\waves).clear
code description
Some ocean sounds. Thanks to LFSaw and snappizz!
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