«Columbia» by codepool
on 27 Apr'17 22:05 inMigration from the old SourceForge wiki.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
s = Server.local; s.boot; ProxySpace.push(s).play; ~out = ~x; s.sendMsg("/b_allocRead", 0, "sounds/a11wlk01.wav"); ( ~x = { arg bufnum, trig=0.0, start, rate=1; var x; x = PlayBuf.ar(1, bufnum, rate * BufRateScale.kr(bufnum), trig, start * BufFrames.kr(bufnum), 1 ); x = Pan2.ar(x, 0); }; ) //start triggering the playbuf: ~x.map(\trig, ~trig); ~trig = { Dust.kr(5) }; ~x.set(\start, 0.5); ~x.map(\start, ~start); ~start = { LFNoise1.kr(0.3, 0.5, 0.5) }; ~x.set(\rate, 0.7); ~x.map(\rate, ~rate); ~rate = { LFPulse.kr(DelayL.kr(~rate.kr, 0.1, 0.1), 0, 0.2, 2.7, 1.1) }; ~rate.add({ LFNoise1.kr(0.2, 0.1) }); ~trig = { Dust.kr(0.3) + Impulse.kr(1) }; ~start = { LFNoise1.kr(0.03, 0.5, 0.5) }; ~out = { BPF.ar(~x.ar * 2, 1600, 0.1) }; ********* /* authors so far: jrh */
reception
comments