I was curious if anyone knew about the following error message if it is a bug or what is going on there.
~filterBus = Bus.control(s);
~filterBus2 = Bus.control(s);
{var in1, in2, sig, feed,my,mouseX;
in1 = (In.kr(~filterBus)*0.4)+0.9;
in2 = (In.kr(~filterBus2)*0.4)+0.9;
feed = LocalIn.ar(2);
// feed = SinOsc.ar(200*[1,1.5],0,0) + feed;
feed[0] = LeakDC.ar(DelayN.ar(feed[0]+(0.05*feed[1]),0.04,0.02));
feed[1] = LeakDC.ar(PitchShift.ar(feed[1]+(0.5*feed[0]),0.5,[0.8,1,1.2,1.5])).sum;
feed = BPF.ar(feed,LFNoise1.kr([0.05,0.05]).exprange(125,2000).poll);
sig = Saw.ar(50,0.001) + (feed*[MouseX.kr(0.5,2,2,0).poll,MouseY.kr(0.5,2,2,0).poll]);
sig = Limiter.ar(sig,0.5);
LocalOut.ar(sig);
Pan2.ar(sig[0],-0.5) + Pan2.ar(sig[1],0.5);
}.play;
Here it gives me the error:
buffer coloring error: tried to release output with zero count
output: 7 DelayN 0
input: MulAdd 2
exception in GraphDef_Recv: buffer coloring error.
*** ERROR: SynthDef temp__32 not found
FAILURE IN SERVER /s_new SynthDef not found
It’s interesting, since (for this example) the In.kr which seems to be causing the trouble isn’t even doing anything in the patch.
However, if you uncomment the line
feed = SinOsc.ar(200*[1,1.5],0,0) + feed;
in the code everything seems to work.
Thanks!