Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Buffers & LFNoise1
name
code content
// you have to write the sample path in the firts line ~bufferdue = Buffer.read(s," WRITE YOUR SAMPLE PATH HERE ", bufnum:2); ( SynthDef.new(\bufbeat, { arg amp = 1, out = 0, buf, start, end, freq = 1; var sig, ptr; ptr = LFNoise1.ar(freq).range(0.0,end); sig = BufRd.ar(2, buf, ptr); sig = sig * amp; Out.ar(out, sig); }).add ) x = Synth.new(\bufbeat, [\buf, ~bufferdue.bufnum, \start,0, \end, ~bufferdue.numFrames-1, \freq, 1, \amp, 0.5],g); x.free;
code description
a simple BufRd with the starting point of lecture randomized by LFNoise1
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