using a wait 16bt & then calling effect_active off would be easiest.
Posté Sat 11 Nov 23 @ 7:31 am
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
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
Posté Sun 12 Nov 23 @ 6:45 pm
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.
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.
Posté Sun 12 Nov 23 @ 7:47 pm
yes, correct thanks! my ‘ wasn’t right, now it works
Posté Sun 12 Nov 23 @ 11:43 pm
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
doesn’t work :( i would know if is there only linein 3 in audio setup
can you help me? thanks
Posté Wed 06 Dec 23 @ 5:34 pm
probably not possible. get_haslinein ? on : off is the best there is.
Posté 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!
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!
Posté Thu 07 Dec 23 @ 12:45 am
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
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
Posté 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!
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!
Posté Sun 10 Dec 23 @ 12:27 pm
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.
Specific effects on specific stems follows the syntax I posted above, here's a video proving just that.
Posté Sun 10 Dec 23 @ 10:56 pm