Is it possible to set the EQ range mapping?
What I am trying to do is have the EQ knob on my controller have a range from 0% to 50%, so that when the EQ knob is turned all the way up, it's at 50% level in Virtual DJ.
What I am trying to do is have the EQ knob on my controller have a range from 0% to 50%, so that when the EQ knob is turned all the way up, it's at 50% level in Virtual DJ.
发表时间 Tue 08 Feb 11 @ 4:01 pm
Does this work:
param_multiply 50% & eq_high
Good chance it won't, but I don't have a controller here to test with at present.
param_multiply 50% & eq_high
Good chance it won't, but I don't have a controller here to test with at present.
发表时间 Tue 08 Feb 11 @ 4:19 pm
wow that worked! Thank you very much!
发表时间 Tue 08 Feb 11 @ 7:24 pm
That works for 0 - 50. How about 50% to 100%?
发表时间 Mon 28 Feb 11 @ 3:21 am
Does
work?
param_multiply 50% & param_add 50% & eq_high
work?
发表时间 Mon 28 Feb 11 @ 3:32 am
how about mapping a jog wheel man?
发表时间 Wed 28 Sep 11 @ 4:12 pm
to map a jog you use
param_greater 50% ? action for clockwise : action for counter clockwise
specifically for a mid range eq knob it is just
param_greater 50% ? eq_mid +1 : eq_mid -1
param_greater 50% ? action for clockwise : action for counter clockwise
specifically for a mid range eq knob it is just
param_greater 50% ? eq_mid +1 : eq_mid -1
发表时间 Wed 28 Sep 11 @ 5:37 pm