I've seen a similar topic brought up a long time ago but nothing seems to work for me. I want a script that will allow me to immediately flip the bass values of two tracks with the outgoing track beginning at 100% and the incoming track beginning at 0%. Does this make sense?
Thank you!
Thank you!
发表时间 Tue 06 Dec 22 @ 3:42 am
Yes, that is simply:
deck 1 eq_low 0% & deck 2 eq_low 50%
for one direction
and
deck 1 eq_low 50% & deck 2 eq_low 0%
for the other direction
Or you can combine them into a toggle like:
deck 1 eq_low 0% ? deck 1 eq_low 50% & deck 2 eq_low 0% : deck 2 eq_low 50% & deck 1 eq_low 0%
You may also want a button to bring hem both back to center:
deck 1 eq_low 50% & deck 2 eq_low 50%
deck 1 eq_low 0% & deck 2 eq_low 50%
for one direction
and
deck 1 eq_low 50% & deck 2 eq_low 0%
for the other direction
Or you can combine them into a toggle like:
deck 1 eq_low 0% ? deck 1 eq_low 50% & deck 2 eq_low 0% : deck 2 eq_low 50% & deck 1 eq_low 0%
You may also want a button to bring hem both back to center:
deck 1 eq_low 50% & deck 2 eq_low 50%
发表时间 Tue 06 Dec 22 @ 5:35 am
Thank you so much! This is exactly what I was looking for and you even anticipated my confusion of 50% for 100%.
发表时间 Tue 06 Dec 22 @ 4:53 pm