I just watched the youtube video on scripting and I think im way out of my league.
Im trying to make a button that will fadeout the current song, pause and cue the next song in my automix playlist.
I would also like this button to work with the karaoke playlist. if this is possible please let me know.
thanks
John
Im trying to make a button that will fadeout the current song, pause and cue the next song in my automix playlist.
I would also like this button to work with the karaoke playlist. if this is possible please let me know.
thanks
John
发表时间 Tue 10 Dec 24 @ 3:49 pm
I really dislike writing scripts for automix, too may options come into play, karaoke makes it even worse.
发表时间 Tue 10 Dec 24 @ 4:37 pm
My annual thanks to all that help out on the forum (particularly locodog) and a question:
Is there a vdj script command to delete a (browsed) file that first moves the file into the recycle bin, so I can catch accidental deletions (rather than the hard delete)?
Is there a vdj script command to delete a (browsed) file that first moves the file into the recycle bin, so I can catch accidental deletions (rather than the hard delete)?
发表时间 Wed 11 Dec 24 @ 12:41 pm
You can't delete files with script, only with rightclick can you delete and then it's a operating system decision where the deleted file goes [recycling or hard delete]
发表时间 Wed 11 Dec 24 @ 6:18 pm
hi, i have this problem, i have mapped a controller button “eq_mode +1” to change mixer knobs..but when use knobs in automatic mixer kobs return in low-mid-high function….mixer knobs are mapped:
eq_low
eq_mid
eq_high
this scripts are wrong?
thanks!
eq_low
eq_mid
eq_high
this scripts are wrong?
thanks!
发表时间 Sat 14 Dec 24 @ 4:46 pm
Is there a way to scratch just the length of one beat? I think the length of time can be calculated as 60/BPM seconds,
but I would like to use this calculation formula as an argument for scratch.
but I would like to use this calculation formula as an argument for scratch.
发表时间 Wed 15 Jan 25 @ 5:53 pm
@twaga I think the scratch verb is only used for BASIC testing purposes.
But to answer the question, mainly to show how to get ms/beat values
first one is a more recent way
we get a constant 1, we cast it as beats, we then cast that beat to ms and it gives us ms/beat, and because scratch expects a +/- value we cast it one more time to a relative value and that puts it on the end of the scratch verb as a relative ms value.
second one
we don't have a divide verb, but we do have a parameter manipulation of
1 / parameter
we then multiply by 60000 [the number of ms in a minute]
and as before cast as relative.
But as I said before the scratch verb is VERY BASIC
If you're looking for scratch on a button press, you should look at this.
https://www.virtualdj.com/wiki/ScratchDNA.html
But to answer the question, mainly to show how to get ms/beat values
get_constant 1 & param_cast beats & param_cast ms & param_cast relative & scratch
get_bpm & param_1_x & param_multiply 60000 & param_cast ms & param_cast relative & scratch
first one is a more recent way
we get a constant 1, we cast it as beats, we then cast that beat to ms and it gives us ms/beat, and because scratch expects a +/- value we cast it one more time to a relative value and that puts it on the end of the scratch verb as a relative ms value.
second one
we don't have a divide verb, but we do have a parameter manipulation of
1 / parameter
we then multiply by 60000 [the number of ms in a minute]
and as before cast as relative.
But as I said before the scratch verb is VERY BASIC
If you're looking for scratch on a button press, you should look at this.
https://www.virtualdj.com/wiki/ScratchDNA.html
发表时间 Wed 15 Jan 25 @ 7:32 pm
Thank you. I have confirmed the correct behavior of your script. I know about scratchDNA, and we can adjust the size of the scratch using the alphabet.
But although we can adjust the timing based on the beat, I don't think we can adjust the size of the scratch based on the beat.
Is it possible to play only one beat and then pause by VDJscript?
But although we can adjust the timing based on the beat, I don't think we can adjust the size of the scratch based on the beat.
Is it possible to play only one beat and then pause by VDJscript?
发表时间 Thu 16 Jan 25 @ 12:09 am
play & wait 1bt & pause
I tried this script, but it seems that the small amount of time it takes for the play command causes small error and shifts.
I tried this script, but it seems that the small amount of time it takes for the play command causes small error and shifts.
发表时间 Thu 16 Jan 25 @ 12:20 am
I think that a loop action can be used to play exactly one beat, but can we create a script that specifies the number of loops and loops one beat only once?
发表时间 Thu 16 Jan 25 @ 6:18 am
locoDog wrote :
But to answer the question, mainly to show how to get ms/beat values
But to answer the question, mainly to show how to get ms/beat values
get_constant 1 & param_cast beats & param_cast ms & param_cast relative & scratch
get_bpm & param_1_x & param_multiply 60000 & param_cast ms & param_cast relative & scratch
I tried to imitate this and write a script that scratches back from the current position to the cuepoint, but the script below didn't work.. Could you please tell me the correct way to write it?
get_position & param_multiply -1 & param_add 'cue_pos 1 mseconly' & param_cast ms & param_cast relative & scratch
Sorry for writing so many times.
If I can make this script correctly, we can use the script with the script of scratching 1 beat taught by you and stutter, I think it will be possible to create a more flexible scratch than scratchDNA using manual keyboard operations.
发表时间 Thu 16 Jan 25 @ 4:27 pm
get_position returns a value of 0.0 to 1.0, not a time,
try get_time elapsed
Also
cue_pos 1 mseconly is not pitch adjusted, use this instead
`get_time cue1 1000`
try get_time elapsed
Also
cue_pos 1 mseconly is not pitch adjusted, use this instead
`get_time cue1 1000`
发表时间 Thu 16 Jan 25 @ 5:09 pm
You can make the beat to milliseconds part a little bit shorter btw
constant 1bt & param_cast ms
constant 1bt & param_cast ms
发表时间 Thu 16 Jan 25 @ 6:03 pm
@adion nice addition, thanks for the info.
发表时间 Thu 16 Jan 25 @ 6:09 pm
This script worked very well! Thank you very much.
param_add 'get_time cue1 1000' 'get_time elapsed & param_cast relative & param_multiply -1'& param_cast ms & param_cast relative & scratch
发表时间 Fri 17 Jan 25 @ 12:04 am
Adion wrote :
You can make the beat to milliseconds part a little bit shorter btw
constant 1bt & param_cast ms
constant 1bt & param_cast ms
This script made it easier! thank you!
constant 1bt & param_cast ms & param_cast relative & scratch
发表时间 Fri 17 Jan 25 @ 12:07 am
twaga wrote :
This script worked very well! Thank you very much.
param_add 'get_time cue1 1000' 'get_time elapsed & param_cast relative & param_multiply -1'& param_cast ms & param_cast relative & scratch
However, I found that this script works while pausing, but not while playing.
How can I make it work even during playing?
发表时间 Fri 17 Jan 25 @ 4:24 pm
pause & param_add 'get_time cue1 1000' 'get_time elapsed & param_cast relative & param_multiply -1'& param_cast ms & param_cast relative & scratch
I solved it by adding pause at the beginning.
发表时间 Fri 17 Jan 25 @ 5:14 pm
Regardless of the value of the scratch argument, the time it takes to one scratch seems to be constant. Is it possible to adjust the speed?
发表时间 Sat 18 Jan 25 @ 9:13 am
hi!
is there a script for button that make on/off stemfx “vocal” and “instruments”? i would use channel filter in vocal and instruments at same time, thanks a lot!
is there a script for button that make on/off stemfx “vocal” and “instruments”? i would use channel filter in vocal and instruments at same time, thanks a lot!
发表时间 Sun 19 Jan 25 @ 9:18 am