I'd think these two idea's would go along very well...
Basically, if you got AVS that has beat-detection, why not incorporate it into the AVS transition?
If there was a textbox where we could enter the number of beats before transistion occurs (like 4 or 6 or 16), then it would be customizable...
What do you think?
Beat-detected AVS transitions!
3 posts
That might be interesting if it's a slow song. It could get pretty hairy on a fast bpm song though.
it can be done, but you need some code to do it.
like...
BEAT
b1=if(above(b1,1),0,b1+1);
then translate that later in the dyn move or superscope.
PIXEL
d=if(equal(b1,1),d*d,d*2) or something like that.
like...
BEAT
b1=if(above(b1,1),0,b1+1);
then translate that later in the dyn move or superscope.
PIXEL
d=if(equal(b1,1),d*d,d*2) or something like that.