layering buffers
| ({ | |
| var path = ...; // path to soundfile | |
| var buf = Buffer.read(s, path); | |
| var count = 500; // number of iterations | |
| s.sync; // wait for the buffer to load | |
| count.do // play and layer the buffer a bazillion times | |
| { | |
| {PlayBuf.ar(buf.numChannels, buf, [0.5, 1, 1.5].wchoose([1, 2, 1].normalizeSum), 1, buf.numFrames.rand, 1)*count.reciprocal}.play; | |
| }; | |
| }.fork) |
This comment has been minimized.
This comment has been minimized.
|
great name of the file. thanks for sharing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Thanks for sharing