Archive: Timescope Left Right channels


16th December 2001 21:14 UTC

Timescope Left Right channels
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


17th December 2001 22:52 UTC

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


18th December 2001 20:20 UTC

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


23rd December 2001 16:22 UTC

i liked your timescope