Quick Sign In:  

Forum: General Discussion

Topic: Script School - Page: 41.35
locoDogPRO InfinityModeratorMember since 2013
using a wait 16bt & then calling effect_active off would be easiest.
 

geposted Sat 11 Nov 23 @ 7:31 am
mg_1978PRO InfinityMember since 2008
hi at all, i have this question: i have a playlist named “Sequencer” (in browser i have seen that is a file.m3u) and this is my script:
get_browsed_folder_path & param_cast & param_contains ‘Sequencer’ ? browser_remove : playlist_add
because only in Playlist Sequencer (or folder Sequencer?) i would remove songs…in other folders i would add songs in Automix..doesn’t work (i think problem is that “Sequencer” isn’t a folder, but is a Playlist
Can you help me with correct script? Thanks
 

geposted Sun 12 Nov 23 @ 6:45 pm
locoDogPRO InfinityModeratorMember since 2013
check with a custom_button LED logic

get_browsed_folder_path & param_cast & param_contains 'Sequencer' ? on : off

does it work there? also check capitalisation, also check your ' marks, vdj does not like curved ' " like you have typed here.
 

geposted Sun 12 Nov 23 @ 7:47 pm
mg_1978PRO InfinityMember since 2008
yes, correct thanks! my ‘ wasn’t right, now it works

 

geposted Sun 12 Nov 23 @ 11:43 pm
mg_1978PRO InfinityMember since 2008
hi at all! script: linein 3 get_haslinein ? on :off
doesn’t work :( i would know if is there only linein 3 in audio setup
can you help me? thanks
 

geposted Wed 06 Dec 23 @ 5:34 pm
locoDogPRO InfinityModeratorMember since 2013
probably not possible. get_haslinein ? on : off is the best there is.
 

geposted Wed 06 Dec 23 @ 10:04 pm
Hi vdjscript Community,

I'm seeking advice on a specific VDJScript challenge. My goal is to apply the same type of filter effect on different stems within a track, but with varying intensities for each stem. For example, applying a filter to the kick drum stem at one intensity level while applying a different intensity of the same filter to the vocal stem simultaneously. I'm considering whether the 'effect_stems' command can be combined with the 'filter' command for this purpose. Has anyone successfully achieved this kind of independent stem-specific filter control? If so, how did you script it?

Any advice or shared experiences with similar scripting challenges would be greatly helpful.

Thanks a lot!
 

geposted Thu 07 Dec 23 @ 12:45 am
locoDogPRO InfinityModeratorMember since 2013
native fx are limited to one instance of that effect per deck. Truth be told so are non native fx BUT you can rename them to dodge that limitation.
SBDJ has a solid filter fx available
https://forum.sbdj.co.uk/topic/2/sbdj-filter-v2-0-released
install, make several copies, give each a name that makes sense like
filterRhythm
then call them like so
effect_active rhythm filterRhythm
and control like so
effect_slider rhythm filterRhythm 1 20%
or show the gui
effect_show_gui Rhythm filterRhythm
 

geposted Thu 07 Dec 23 @ 1:18 am
Hi Locodog,

Thank you for your insightful response. I appreciate the clarity you've provided about the limitations of native effects and the workaround with non-native effects. The suggestion to use SBDJ's filter fx, make copies, and rename them for individual stem control seems like a practical solution to my challenge. I will definitely try implementing this method and see how it works out.

Thanks again for your advice and for sharing your expertise!
 

geposted Sun 10 Dec 23 @ 12:27 pm
locoDogPRO InfinityModeratorMember since 2013
effect_stems applies the active effects on the standard effect slots to the specified stem.

Specific effects on specific stems follows the syntax I posted above, here's a video proving just that.

 

geposted Sun 10 Dec 23 @ 10:56 pm
mg_1978PRO InfinityMember since 2008
hi, where is in setting? And this refresh is for Denon Dj Prime 4 (for example) when file .xml (skin) change and doesn’t need to close the software and restart it to see the changes in the skin?
Thanks
 

geposted Wed 13 Dec 23 @ 4:11 pm
locoDogPRO InfinityModeratorMember since 2013
not a script, it's how the interface & mapping windows have changed visually
 

geposted Wed 13 Dec 23 @ 4:17 pm
mg_1978PRO InfinityMember since 2008
Hi at all, i have problem with script:
sampler_output “headphones”

if i would listen samples only in headphones….i don’t listen any sample :( i have mapped a button: sampler_pfl
but i listen sample only in headphones only when i pushed continuosly the button mapped sampler_pfl.
What is wrong?
thanks
 

geposted Sat 16 Dec 23 @ 11:26 pm
Trying to figure out how to have my gain go up 4 DBs when ever I hit my "Vocal" button and then switch back to match the other track when I hit the same button again.

This is my "Vocal" button now

var 'stem_page' 1 ? var 'pad_fx_sngl' 1 ? padfx_single 'echo out' 80% 1bt 'stemfx:vocal' smart_pressed : padfx 'echo out' 80% 1bt 'stemfx:vocal' smart_pressed : var 'stem_page' 0 ? stem_pad 'acapella' smart_pressed : stem_pad 'vocal' smart_pressed

Could I get some help please??
 

geposted Sun 17 Dec 23 @ 3:19 pm
locoDogPRO InfinityModeratorMember since 2013
I'm not sure oh how to raise a specific number of dB, I'd just give gain a poke up of a few % and down by the same %


( var vocalBoost 0 ? gain +0.04 & set vocalBoost 1 : gain -0.04 & set vocalBoost 0 ) & var 'stem_page' 1 ? var 'pad_fx_sngl' 1 ? padfx_single 'echo out' 80% 1bt 'stemfx:vocal' smart_pressed : padfx 'echo out' 80% 1bt 'stemfx:vocal' smart_pressed : var 'stem_page' 0 ? stem_pad 'acapella' smart_pressed : stem_pad 'vocal' smart_pressed
 

geposted Sun 17 Dec 23 @ 3:56 pm
Ok so your script raises the gain but does not turn and keep on the vocal when pressed.

Its close 👍🏾

EDIT

After a restart its working, just need a little more gain now.
 

geposted Sun 17 Dec 23 @ 4:19 pm
locoDogPRO InfinityModeratorMember since 2013
It's your script, I just added a bit for gain on the start in brackets so your script should work as it did.
 

geposted Sun 17 Dec 23 @ 4:21 pm
Ok I figured out how you boosted it but now when I turn the vocals off I went the gain to match the opposite track on the other deck??

Appreciate the help

Ok so I got it to match the gain but now my button isn't lighting up when the vocal is on. That's the last problem I got 😅
 

geposted Sun 17 Dec 23 @ 4:24 pm
locoDogPRO InfinityModeratorMember since 2013
script for the LED currently?
 

geposted Sun 17 Dec 23 @ 5:44 pm
It’s on a pad page and I don’t see anything.

It’s just action, pressure action and color.
 

geposted Sun 17 Dec 23 @ 11:03 pm
88%