I'm currently trying to re-map one of the knobs on my mixer (gain) to control loop length.. I want to make it so that when i turn it left a little, it cuts by 25%, then 25% more, and so on. I got that working with the command loop_length -25%, but I also want to make it increase by 25% if I turn the knob the other direction. Is it possible to map this? if so, how?
Posté Fri 30 Mar 12 @ 4:54 pm
they are some weird numbers for the sizes dude...
param_greater 0% ? loop +25% : loop -25%
your better off with this
param_greater 0% ? loop +200% : loop -50%
also you may need to change "param_greater 0%" to "param_greater 50%" depending on how the controller is defined.
param_greater 0% ? loop +25% : loop -25%
your better off with this
param_greater 0% ? loop +200% : loop -50%
also you may need to change "param_greater 0%" to "param_greater 50%" depending on how the controller is defined.
Posté Fri 30 Mar 12 @ 6:10 pm
The above will only work with an endless encoder knob.
To map to a standard knob or slider, try the following: http://www.virtualdj.com/wiki/Adjust%20loop%20length%20using%20a%20knob%20or%20slider.html
You will need to purchase the full VirtualDJ Professional to be able to custom map your DJ console. VirtualDJ Console Edition 5 does not support custom mapping and Home FREE 7 will only work for 10 minutes at a time with a controller connected.
You can upgrade to the full VirtualDJ Professional at a considerable discount by going to: http://www.virtualdj.com/buy/index.html
To map to a standard knob or slider, try the following: http://www.virtualdj.com/wiki/Adjust%20loop%20length%20using%20a%20knob%20or%20slider.html
You will need to purchase the full VirtualDJ Professional to be able to custom map your DJ console. VirtualDJ Console Edition 5 does not support custom mapping and Home FREE 7 will only work for 10 minutes at a time with a controller connected.
You can upgrade to the full VirtualDJ Professional at a considerable discount by going to: http://www.virtualdj.com/buy/index.html
Posté Sat 31 Mar 12 @ 12:33 pm