Ok after learning how to optimize VDJ i have it working perfect for my needs. My only thing is this horrible cbg which is 50- 75% wrong...for house music its great but not for R&B/Hip-hop...sometimes it gets the bpm right but misses detecting the down beat so is there a way can map a button or key to set the downbeat on the fly? and save that to the track so i dont have to do it everytime on even just more than once.
Posté Mon 23 Sep 13 @ 7:10 am
Easy
keyboard.xml
<map value="Your Key" action="beat_tap" />
or a single left click on the bpm button on the skin does the same thing.
or you could have 2 keys to bring the CBG inline
keyboard.xml
<map value="Your + key" action="adjust_cbg +0.01" />
<map value="Your - key" action="adjust_cbg -0.01" />
keyboard.xml
<map value="Your Key" action="beat_tap" />
or a single left click on the bpm button on the skin does the same thing.
or you could have 2 keys to bring the CBG inline
keyboard.xml
<map value="Your + key" action="adjust_cbg +0.01" />
<map value="Your - key" action="adjust_cbg -0.01" />
Posté Mon 23 Sep 13 @ 7:20 am
will that be saved or will i have to do it again, the alignment i mean
Posté Mon 23 Sep 13 @ 12:07 pm
it gets saved immediately. I use an encoder under a shift
var '$shift' ? param_smaller 0 ? adjust_cbg -0.125 : adjust_cbg +0.125 : whatever it normally does
it will jump half a beat
var '$shift' ? param_smaller 0 ? adjust_cbg -0.125 : adjust_cbg +0.125 : whatever it normally does
it will jump half a beat
Posté Mon 23 Sep 13 @ 12:14 pm