[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] PanB / DecodeB2



This will start and end in front:

s = Server.internal.boot;

s.scope(4);

(
{
var w, x, y, z, p, a, b, c, d;


p = PinkNoise.ar; // source


// B-format encode
#w, x, y, z = PanB.ar(p, Line.kr(0, 2, 10)); 


// B-format decode to quad
DecodeB2.ar(4, w, x, y, 0.5);
}.play(s);
)

Josh

******************************************

Joshua D. Parmenter

http://www.realizedsound.net/josh/


"...Some people think a composer's supposed to please them, but in a way a composer is a chronicler... He's supposed to report on what he's seen and lived."

                                                                            -Charles Mingus



On Jan 4, 2006, at 10:43 AM, David Feller Jensenius wrote:

(
{
var w, x, y, z, p, a, b, c, d;


p = PinkNoise.ar; // source


// B-format encode
#w, x, y, z = PanB.ar(p, ((Line.kr(1,360,10)/180)*pi)-pi, ((0.1/180*pi))); 


// B-format decode to quad
DecodeB2.ar(4, w, x, y, 0.5);
}.play;
)