Hi, I am new to VDJ.
I am trying to use PADS and I inserted the following commands in Pad 1 (Sampler - My sample bank - Push Action)
play_pause & sampler_play 1 & play_pause
What I want is pause deck1, play sample 1 on My sample bank, and resume playing on deck 1
Deck 1 is in automix mode.
VDJ is playing sample 1 but without pausing at first and playing at the end on deck1.
Any ideas?
Regards Theodore
I am trying to use PADS and I inserted the following commands in Pad 1 (Sampler - My sample bank - Push Action)
play_pause & sampler_play 1 & play_pause
What I want is pause deck1, play sample 1 on My sample bank, and resume playing on deck 1
Deck 1 is in automix mode.
VDJ is playing sample 1 but without pausing at first and playing at the end on deck1.
Any ideas?
Regards Theodore
Posted Sun 30 Oct 16 @ 9:32 am
The actions are executed all at once. Its not a sequence of actions, meaning action 2 (Play Sample) doesnt wait for action 1 to be completed, and action 3 (2nd play_pause action) doesnt wait for the other 2.
So the 2 x play_pause actions actually keep the track playing.
What you want to achieve is to pause deck, play sample and when sample stops, resume deck ?
So the 2 x play_pause actions actually keep the track playing.
What you want to achieve is to pause deck, play sample and when sample stops, resume deck ?
Posted Sun 30 Oct 16 @ 1:38 pm
That's correct
Posted Sun 30 Oct 16 @ 1:43 pm
pause & sampler_play 1 & repeat_start_instant "myinter" 200ms & sampler_play 1 ? nothing : play & repeat_stop "myinter"
or if you want the same button/pad to resume playing without waiting for the sample to stop ..
sampler_play 1 ? repeat_stop "myinter" & sampler_stop 1 & play : pause & sampler_play 1 & repeat_start_instant "myinter" 200ms & sampler_play 1 ? nothing : play & repeat_stop "myinter"
Posted Sun 30 Oct 16 @ 2:07 pm
Thank you. Is there more documentation for scripts somewhere ???
Posted Sun 30 Oct 16 @ 2:50 pm
http://www.virtualdj.com/wiki/VDJ8script.html Outline
http://www.virtualdj.com/wiki/VDJscript_verbs_v8..html Verbs
http://www.virtualdj.com/wiki/VDJScript%20Examples%20Database.html User examples
http://www.virtualdj.com/user/locodog/blogs/5458/How_to__Perform_A_Action_Automatically_When_A_Track_Is_Loaded.html tutorial for repeat_start scripts
the script above runs at 200ms, this may lead to an audible gap, you could drop the repeat time to 33ms [this is the fastest repeat scripts can work]
http://www.virtualdj.com/wiki/VDJscript_verbs_v8..html Verbs
http://www.virtualdj.com/wiki/VDJScript%20Examples%20Database.html User examples
http://www.virtualdj.com/user/locodog/blogs/5458/How_to__Perform_A_Action_Automatically_When_A_Track_Is_Loaded.html tutorial for repeat_start scripts
the script above runs at 200ms, this may lead to an audible gap, you could drop the repeat time to 33ms [this is the fastest repeat scripts can work]
Posted Sun 30 Oct 16 @ 2:56 pm
Can we change the sample transition to fade? (song pause with fade, sample, song play with fade)
How should the script become in that case?
How should the script become in that case?
Posted Mon 31 Oct 16 @ 6:21 pm