Submit
Browse
Anonymous
Login
RSS
SuperCollider Code
Fork Code: Play soundfiles
name
code content
// By Bjørn Houdorf March 2013, Play your (short) soundfiles with some delay. b = SoundFile.collectIntoBuffers("yourSoundFileFolder/*"); // 1. rund this ( // 2. and then run this t = Task({ ({ var num= b.size.rand; var buf= b[num]; 0.1*Splay.ar(PlayBuf.ar(buf.numChannels, buf, 1, 1, 0, 0)); }.play; ) }); ) ( // 3. Then run this z = Task({ loop({ t.start; 0.1.wait; }); }); ) z.start; // 4. and run this z.stop; // 5. and finally run this
code description
Play your (short) soundfiles with some delay. Your soundfiles should be in the folder "yourSoundFileFolder"
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