// title: Goodnight World // author: Schemawound // description: // Experimenting with some Reich style phasings // // Audio: http://soundcloud.com/schemawound/goodnightworld // code: (SynthDef(\x, {|midi = 60, amp = 0.8| Out.ar(0, Pan2.ar(SinOsc.ar(midi.midicps, mul: EnvGen.kr(Env.perc(0, 0.5), timeScale: 0.5, levelScale: 0.3)), Rand(-1, 1)) * EnvGen.kr(Env.perc(0, 0.5), timeScale: 1.3*0.5, levelScale: Rand(0.3, 0.5), doneAction:2));}).add;) (~phase = Pbind(*[ instrument: \x, dur: 0.5, midi: Pseq([0, 4, 7] + 60, inf)]); 5.do({|val| ~phase.play(TempoClock.new((110 + (0.5 * val)) / 60))}); )