HB41
DCオフセット….
http://www.tn8.jp/data/HB410813.m4a
SynthDef(”noiseC”, {arg freq = 100, amp=1, speed = 1, revMix = 0.5, revRoom =1.0,attack=0.1,pan=0,decay=0.5;
Out.ar(0, Pan2.ar(amp *
FreeVerb.ar(
SinOsc.ar([freq*1,freq*0.5], pi , 0.1) +
BPF.ar(WhiteNoise.ar(1) + PinkNoise.ar(0.5), 800) * Saw.ar(0.1) +
LPF.ar(WhiteNoise.ar(1) + PinkNoise.ar(0.25), 100) * SinOsc.ar(0.1)
, revMix , revRoom, 0.8)
* EnvGen.ar(Env.perc(attack,decay,8), doneAction:2) ;
,pan));
}).store;
~decay =4; ~attack =150;
Pbind(
\decay, Pfunc({~decay}),
\dur, Pseq([
Pseq([0.5,0.5,1,1,1,2],2),
0.5,0.5,1,1,1,1,1
],inf),
\amp, Pseq([0.5,0.5,1,1,1,2],inf),
\attack, Pfunc({~attack}),
\degree, Pseq([
4,4,5,4,7,6,
4,4,5,4,8,7,
4,4,11,9,7,6,5,
10,10,9,7,8,7
],inf).stutter(2),
\root,7,
\instrument, “noiseC”,
\tempo,4
).play;
Posted: 8月 12th, 2010 under 日々のSC.
Comments: none