get_beat_bar 1
发表时间 Mon 01 Feb 21 @ 12:40 pm
Hi, does anyone know how to do the Richie Hawtin effect with the Virtual dj effects?
In Traktor it uses the tape delay capturing the sound and playing with the tonality.
But in Virtual dj we do not have the tape delay effect or the parameters that it has in the virtual dj delay.
Any suggestion?
In Traktor it uses the tape delay capturing the sound and playing with the tonality.
But in Virtual dj we do not have the tape delay effect or the parameters that it has in the virtual dj delay.
Any suggestion?
发表时间 Fri 05 Feb 21 @ 10:37 pm
VDJ is a VST host....
https://ask.audio/articles/how-to-create-a-richie-hawtin-style-delay
https://ask.audio/articles/how-to-create-a-richie-hawtin-style-delay
发表时间 Sat 06 Feb 21 @ 12:11 am
Nicotux you are a god.
Thank you very much friend.
Thank you very much friend.
Nicotux wrote :
VDJ is a VST host....
https://ask.audio/articles/how-to-create-a-richie-hawtin-style-delay
https://ask.audio/articles/how-to-create-a-richie-hawtin-style-delay
发表时间 Sat 06 Feb 21 @ 6:41 am
hi at all! i have this question: i have written script: action_deck 1 ? deck 1 sampler_bank ‘recordings bank’ : action_deck 2 ? deck 2 sampler_bank ‘instruments’ : nothing
(for have in pad_page ‘sampler’ about deck 1 and 2 two different sampler bank) but don’t work :( could do this?
(for have in pad_page ‘sampler’ about deck 1 and 2 two different sampler bank) but don’t work :( could do this?
发表时间 Tue 16 Feb 21 @ 2:41 pm
there is only one sampler and have dynamic deck assignment so that your script can't work
action_deck 1 ? sampler_bank "Recording Banks" : action_deck 2 ? sampler_bank "Instruments" : nothing
work fine but may not do what you expect
it needs to be in both decks exactly the same as
button on deck 1: sampler_bank "Recording Banks"
button on deck 2: sampler_bank "Instruments"
maybe you better want
working depending on selected deck:
deck default get_deck 1 ? sampler_bank "Recording Banks" : get_deck 2 ? sampler_bank "Instruments" : nothing
or
working depending on the deck with higher level:
deck active get_deck 1 ? sampler_bank "Recording Banks" : get_deck 2 ? sampler_bank "Instruments" : nothing
or better a switchable repeat script doing it for you ?
repeat_start swsmp ? repeat_stop swsmp : repeat_start swsmp 48ms -1 & deck active get_deck 1 ? sampler_bank "Recording Banks" : get_deck 2 ? sampler_bank "Instruments" :
action_deck 1 ? sampler_bank "Recording Banks" : action_deck 2 ? sampler_bank "Instruments" : nothing
work fine but may not do what you expect
it needs to be in both decks exactly the same as
button on deck 1: sampler_bank "Recording Banks"
button on deck 2: sampler_bank "Instruments"
maybe you better want
working depending on selected deck:
deck default get_deck 1 ? sampler_bank "Recording Banks" : get_deck 2 ? sampler_bank "Instruments" : nothing
or
working depending on the deck with higher level:
deck active get_deck 1 ? sampler_bank "Recording Banks" : get_deck 2 ? sampler_bank "Instruments" : nothing
or better a switchable repeat script doing it for you ?
repeat_start swsmp ? repeat_stop swsmp : repeat_start swsmp 48ms -1 & deck active get_deck 1 ? sampler_bank "Recording Banks" : get_deck 2 ? sampler_bank "Instruments" :
发表时间 Tue 16 Feb 21 @ 3:33 pm
Quick question:
Why does
deck left play ? color 'green' : color 'green' & blink
NOT cause a launchpad LED to blink, when the left deck is not playing? (above is the mapping for the LED, not the pad action)
The pad is green, just does not blink.
Why does
deck left play ? color 'green' : color 'green' & blink
NOT cause a launchpad LED to blink, when the left deck is not playing? (above is the mapping for the LED, not the pad action)
The pad is green, just does not blink.
发表时间 Tue 16 Feb 21 @ 8:36 pm
because blink is a query which is on or off depending on time
use
deck left play ? color green : blink ? color green
you may also use two colors
deck left play ? color green : blink ? color green : color darkgreen
use
deck left play ? color green : blink ? color green
you may also use two colors
deck left play ? color green : blink ? color green : color darkgreen
发表时间 Tue 16 Feb 21 @ 9:01 pm
@nicotux : doesn't work :(
发表时间 Tue 16 Feb 21 @ 9:37 pm
use with a controller may differ specially with colors some have specific colors only
launchpad X mapping is recent and as said in the other thread update is coming
the above script is for use (and working) with skin pads
(in color tab) which mostly is the same as LED (depending on controller)
launchpad X mapping is recent and as said in the other thread update is coming
the above script is for use (and working) with skin pads
(in color tab) which mostly is the same as LED (depending on controller)
发表时间 Tue 16 Feb 21 @ 10:02 pm
Thank you Nicotux
Your solution worked perfectly..
Again Big Thanks
-------------------------
PS
and it was. MG_1978 that said it does not work,........and he never said what the script was for..
I believe everything works well with Launchpad X, the native definition did not also include the capability to utilize its Velocity touch features, and that is being added.
Your solution worked perfectly..
Nicotux wrote :
because blink is a query which is on or off depending on time
use
deck left play ? color green : blink ? color green
use
deck left play ? color green : blink ? color green
Again Big Thanks
-------------------------
PS
and it was. MG_1978 that said it does not work,........and he never said what the script was for..
I believe everything works well with Launchpad X, the native definition did not also include the capability to utilize its Velocity touch features, and that is being added.
发表时间 Wed 17 Feb 21 @ 4:47 am
That's the problem with multiple questions when tired :=)
sorry mg_1978 i answered the wrong post
as said you can't actually get 2 different samplers banks at a time because only one sampler exist
when selected both side sampler pads are linked to the sampler (always same bank)
i provided 3 scripts examples switching manually sample bank and one auto
which one doesn't work ? All?
They actually all work as expected here, so that maybe as IIDEEJAYII pointed out more explanation about what you are trying to achieve is needed
I agree showing different sample bank pages even not selected and switching on the fly would be nice
the same for pads : a way to display all 4 pages of selected padpage would be fine
sorry mg_1978 i answered the wrong post
as said you can't actually get 2 different samplers banks at a time because only one sampler exist
when selected both side sampler pads are linked to the sampler (always same bank)
i provided 3 scripts examples switching manually sample bank and one auto
which one doesn't work ? All?
They actually all work as expected here, so that maybe as IIDEEJAYII pointed out more explanation about what you are trying to achieve is needed
I agree showing different sample bank pages even not selected and switching on the fly would be nice
the same for pads : a way to display all 4 pages of selected padpage would be fine
发表时间 Wed 17 Feb 21 @ 8:10 am
sorry! i have written ‘doesn’t work’ for Nicotux answer about my sampler question; your script (@Nicotux) yes works well for change sampler_bank....but not for my question; i would change 2 different sampler_bank about 2 decks, but i have understand that is NO possible in Virtual Dj (in Traktor Pro for example you can have one different bank in different deck....but is not Virtual Dj teory).... tanks a lot at all and this is a very 👍 forum
发表时间 Wed 17 Feb 21 @ 2:55 pm
what is possible : a pad for samples 1..8 (standard one) and a pad for samples 9..16
or using pads 16 a sampler pad for 1..16 and a sampler pad for 17..32
with big 32 samples banks
or using pads 16 a sampler pad for 1..16 and a sampler pad for 17..32
with big 32 samples banks
发表时间 Wed 17 Feb 21 @ 5:16 pm
hi, i have made a “fx pad” and in my pad 4 i would have “little slip brake” fx which has a duration of 1 beat...have someone a script for me? thanks!!
发表时间 Wed 17 Feb 21 @ 11:05 pm
look at the padfx script description see what I've done here.
padfx 'slipbrake8' "1 beat:on"
padfx 'slipbrake8' "1 beat:on"
发表时间 Wed 17 Feb 21 @ 11:18 pm
Locodog yes work 👍 thanks!!
发表时间 Thu 18 Feb 21 @ 10:09 pm
by the way note 'padfx' is LIMITED :
- does not work when used on deck master - wrongly apply to action deck instead
- does not allow to use slots - can't be used for releasefx, sampler, mic, aux, mixfx, colorfx ...
- does not work when used on deck master - wrongly apply to action deck instead
- does not allow to use slots - can't be used for releasefx, sampler, mic, aux, mixfx, colorfx ...
发表时间 Fri 19 Feb 21 @ 2:51 am
hi! in my pad_page ‘setting’ i have mapped pad1: browser_gotofolder ‘C:\Users\Utente\Music\VirtualDj Recording’ for open VirtualDj Recording folder and have mapped color pad1: get_browsed_filepath ‘C:\ Users\Utente\Music\VirtualDj Recording’ ? color ‘white’ : nothing (with auto-dim) for have pad lighting white if i am in VirtualDj Recording folder and pad little white if i am in other folder (like normal color pad with auto-dim)... but color pad is always black :( can you help me?
发表时间 Sat 20 Feb 21 @ 5:43 am
you haven't tested the get action
param_equal `get action` "string" ? true : false
param_equal `get action` "string" ? true : false
发表时间 Sat 20 Feb 21 @ 11:07 am