hysysk:old

this blog will not be updated.

日曜日, 11月 27, 2005

Pdef

ストリームリファレンス定義。音を鳴らすパターンを定義出来ます。
Pdefのヘルプファイル内のrecursive_phrasingも面白い。
Tempo.bpm=134で実行すると気持ちいい感じで作ってあります。
(
Pdef(\mile,
Pseq([
Pbind(
\instrument, \mil4, //SynthDefで定義した楽器
\dur, Pseq([Pseq([1, 1, 0.5, 0.5, 1], 3)* 0.25, Pseq([1,1,1,1], 1) * 0.25], inf),
\amp, Pseq([1,1,1,0, 1,1,1,1,0]* 0.1, inf),
\degree, Pseq([7,9,4,7,11,5,4,9],inf), 
\pan, Pfunc({rand2(1.0)})
)
])
)
)
Pdef(\mile).play;