Timescope is buggy. It has gui controls to select whether you want it to take its data from the left, right, or center channels... but no matter what choice you make, it always displays scope data for the center channel.
I made a timescope imitation using the superscope, and that did allow me to choose what channel to graph. As far as I know, this bug only occurs with the timescope. This bug has existed for many versions of winamp now... it is not new. I think nobody ever noticed before.
Myrddin
Timescope Left Right channels
4 posts
ahh i noticed this too. but one thing that i would like for timescope is a speed adjest and ability to move in the opposite direction of its defualt
I'm doing this in theory, but a timescope, that would be...
INIT:
L=scopespeed;
FRAME:
t=if(above(t,1),-1,t+L);
PIXEL:
X=t;
Y=i*2;
va=getspec(i,0,0);
red=va;
green=va;
blue=va;
To change what direction it moves, invert the values in "T",
t=if(below(t,-1),1,t-L);
Not sure, would this be good enough for you?
Linus
INIT:
L=scopespeed;
FRAME:
t=if(above(t,1),-1,t+L);
PIXEL:
X=t;
Y=i*2;
va=getspec(i,0,0);
red=va;
green=va;
blue=va;
To change what direction it moves, invert the values in "T",
t=if(below(t,-1),1,t-L);
Not sure, would this be good enough for you?
Linus
i liked your timescope