Is anyone familiar with Pioneer's "slip mode"? Is there a VDJ script that mimics this?
发表时间 Sun 24 Apr 11 @ 1:42 am
csmurphy wrote :
Is anyone familiar with Pioneer's "slip mode"? Is there a VDJ script that mimics this?
Don't think vdj is capable of doing this.
发表时间 Sun 24 Apr 11 @ 10:48 am
Wrong........what they charge you VDJ can do for free ;-)
Peep this, http://www.virtualdj.com/forums/144651/PC_Version_Technical_Support/SLIP_MODE.html?search=SLIP%20MODE&page=1
Enjoy
Huey
Peep this, http://www.virtualdj.com/forums/144651/PC_Version_Technical_Support/SLIP_MODE.html?search=SLIP%20MODE&page=1
Enjoy
Huey
发表时间 Sun 24 Apr 11 @ 11:04 am
I'm buried deep in PC Technical Support - I added the code, but I had to make a few changes to make it work.
I'm using the Denon MC6000.
var_equal '$slipmod' 0 ? touchwheel_touch : touchwheel_touch & down ? var_equal 'clon' 0 ? device_side "left" ? deck 1 clone_deck 3 & set 'clon' 1 : deck 2 clone_deck 4 & set 'clon' 1 : touchwheel_touch : device_side "left" ? deck 3 clone_deck 1 & set 'clon' 0 : deck 4 clone_deck 2 & set 'clon' 0
It's a really smart idea, great work.
The one issue I'm running into is this: let's say I'm working off the left deck. When I release the touchwheel, deck 3 clones itself immediately to deck 1. But the touchwheel is still spinning, so the spinning wheel acts on the song AFTER it got cloned back, so the cloned song gets moved by the wheel. In order for this to work, you have to come to a full stop THEN release (which sucks) , or the programming needs to clone the song AFTER the wheel stops spinning. Any ideas?
I'm using the Denon MC6000.
var_equal '$slipmod' 0 ? touchwheel_touch : touchwheel_touch & down ? var_equal 'clon' 0 ? device_side "left" ? deck 1 clone_deck 3 & set 'clon' 1 : deck 2 clone_deck 4 & set 'clon' 1 : touchwheel_touch : device_side "left" ? deck 3 clone_deck 1 & set 'clon' 0 : deck 4 clone_deck 2 & set 'clon' 0
It's a really smart idea, great work.
The one issue I'm running into is this: let's say I'm working off the left deck. When I release the touchwheel, deck 3 clones itself immediately to deck 1. But the touchwheel is still spinning, so the spinning wheel acts on the song AFTER it got cloned back, so the cloned song gets moved by the wheel. In order for this to work, you have to come to a full stop THEN release (which sucks) , or the programming needs to clone the song AFTER the wheel stops spinning. Any ideas?
发表时间 Mon 25 Apr 11 @ 9:11 am
then we need to map the jog and not the jog_touch. I think its doable.
发表时间 Mon 25 Apr 11 @ 12:49 pm