I'm using a hercules mk2 and Virtual Dj
Is there a way to alter the pitch gain sensitivity when using the pots on the Herc?
It used to be a very smoothe and steady increase in very small increments but on some update (no idea which version) it seemed to change to wild jumps and completely unreliable to alter pitch while a track is playing.
Anyone have any ideas?
Cheers.
Is there a way to alter the pitch gain sensitivity when using the pots on the Herc?
It used to be a very smoothe and steady increase in very small increments but on some update (no idea which version) it seemed to change to wild jumps and completely unreliable to alter pitch while a track is playing.
Anyone have any ideas?
Cheers.
Posté Sun 17 Jul 11 @ 10:56 am
just change the mapping to something like...
param_greater 50% ? pitch +0.01 : pitch -0.01
that should make it a really fine adjustment, but it will also depend on the pitch range eq. 6% range will be finer than 30%
if that doesn't work for both decks use this
device_side 'left' ? param_greater 50% ? deck left pitch +0.01 : deck left pitch -0.01 : param_greater 50% ? deck right pitch +0.01 : deck right pitch -0.01
param_greater 50% ? pitch +0.01 : pitch -0.01
that should make it a really fine adjustment, but it will also depend on the pitch range eq. 6% range will be finer than 30%
if that doesn't work for both decks use this
device_side 'left' ? param_greater 50% ? deck left pitch +0.01 : deck left pitch -0.01 : param_greater 50% ? deck right pitch +0.01 : deck right pitch -0.01
Posté Sun 17 Jul 11 @ 11:21 am
Brilliant thanks!
Posté Sun 17 Jul 11 @ 11:37 am