Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: batuhan's buzzer parametrized
name
code content
// A beautiful sc140 tweet by Batuhan Bozkurt, parametrized for real-time changes ( // Start sound here a = { | rateL = 5, rateR = 6, blipMul = 100, blipAdd = 50, fMul = 50, kMul = 1 | f = LocalIn.ar(2).tanh; k = Latch.kr(f[0].abs,Impulse.kr(1/4)) * kMul; LocalOut.ar( f + CombC.ar(Blip.ar([rateL, rateR], blipMul * k + blipAdd, 0.9), 1, k*0.3, fMul * f));f }.play ) // Set parameters for changing sound here: a.set(\rateL, 10); a.set(\rateR, 8); a.set(\blipMul, 25); a.set(\blipAdd, 70); a.set(\fMul, 30); a.set(\kMul, 0.01);
code description
A beautiful sc140 tweet by Batuhan Bozkurt, parametrized for real-time changes. To do: Add gui widgets for easier interactive control.
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