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

Re: [sc-users] bbcut => osc



On 6 Mar 2006, at 21:35, Eduardo Melendez wrote:

Hi!
is there a way to send
bbcut and bbcut2
info via osc?


There is an undocumented class called BBCSOSCOut which works with bbcut (see BBCutSynth.dumpClassSubtree), though it doesn't pass every grain parameter (ie pan gets decided independently). BBCut2 has an untested implementation based around a trace like functionality which I'll only be trying out myself next month. 


(    //first protocol information demonstration
var sf;
sf=SF3.array([":Sounds:bogdan:dillbeat1"],[8]);
o= BBCSOSCOut.new(2, NetAddr("169.254.29.94", 9999));
o.tempo(3.4);
BBCut([BBCutSynthSF(sf.at(0),0.3, SQPushFXAmp.new,0.0,SQPushFXPitch.new(0.96,pbchance:0.8))
,o
],SQPusher1(0.4, 3, 0.4)).tempo_(3.4).ar;
)