Connexion rapide:  

Forum: General Discussion

Sujet Script School - Page: 42.2
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 😅
 

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

Posté 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.
 

Posté Sun 17 Dec 23 @ 11:03 pm
What work for me when using vocal sstem to bring up the sound is using loudmax when soloing the vocal. Loco helped me with that script also.
 

Posté Sun 17 Dec 23 @ 11:38 pm
NOTE:
maybe to check the logic now of the combination script, for the button...

since one now has the gain toggling on/off ...
while the you are using smart_pressed.. which can either have a toggle, or a temporary action..

so there could be unexpected results at times...

check if all works as you wish.
 

Posté Mon 18 Dec 23 @ 4:15 am
Djratedxxx919 wrote :
What work for me when using vocal sstem to bring up the sound is using loudmax when soloing the vocal. Loco helped me with that script also.


The script up above works just fine, no need to use a plugin. Thanks tho..
 

Posté Mon 18 Dec 23 @ 2:34 pm
Hi everybody,

Question: Is there a script verb, that kann add, remove, or toggle hashtags on the browsed song. I mean the tags you can add for User 1 and User 2 field.
For me a toggle would be important. Like it can be done in the info bar done by click on the hashtag.


But as a script. Maybe something like
browsed_song_hashtag '#GG' which will add tag '#GG' if not present or will remove the tag, if it was present before.

I wish nice holidays to the team and everybody else!
Cheers Jochen
 

Posté Fri 22 Dec 23 @ 11:06 am
agadj2PRO InfinityMember since 2021
Good to all,
I am analyzing many songs with multiple bpm
the program creates a poi called BEAT ANCHOR .
I have tried to add an action poi at that point with the following script.
"beatlock on & wait 500ms & beatlock off"
With this I get him to keep the mix paired
But I would like to know if it could be automated so that when making the beatanchor this action is included, either in the Poi itself or creating a new one of action.
Thank you
 

Posté Wed 27 Dec 23 @ 12:52 pm
İs it possible to down the volume slowly for one of the stems. İ'm using rane four. For exanple i want to down the volume of the melody. What do i have to do
 

Posté Thu 28 Dec 23 @ 4:30 pm
locoDogPRO InfinityModeratorMember since 2013
@ongunbuke check the first post of this thread, there's a topic on repeating scripts [rsi], you'll be manipulating
stem melody

@agadj2
not possible; a beatanchor can't hold an action, probably best to use a APOI at the start of grid unevenness and one at the end.

@EGR
It's on a tag, so you can check the tag and add to the tag with
param_contains 'HASHTAG' `get_browsed_song 'TAG'` ?
if false you can add with
browsed_song 'TAG' 'HASHTAG'

If true, removing part of a tag is not possible with script, but I do have a windows plugin that can do this.
 

Posté Thu 28 Dec 23 @ 6:03 pm
mg_1978PRO InfinityMember since 2008
hi! is there a script in “hotcues” pad that assign an hotcue color yellow if pad is holding 1 second or color “get_deck_color ‘absolute’ “ if pad is pressed without holding?
Thanks a lot
 

Posté Sat 30 Dec 23 @ 10:34 pm
locoDogPRO InfinityModeratorMember since 2013
I thought you'd have been capable of that yourself.

hot_cue 1 & holding ? cue_color 1 "yellow" : get_deck_color 'absolute' & param_cast text & cue_color 1

that works for setting, but fails when you call, which I guess you got to then got stuck.

so this issue is, the order things happening; holding - either reply case does the cue exist ? exists call the cue, not exist create the cue and colour it.

holding ? has_cue 1 ? hot_cue 1 : hot_cue 1 & cue_color 1 "yellow" : has_cue 1 ? hot_cue 1 : hot_cue 1 & get_deck_color 'absolute' & param_cast text & cue_color 1
 

Posté Sun 31 Dec 23 @ 12:08 am
mg_1978PRO InfinityMember since 2008
your script is perfect 👌 thanks!

 

Posté Mon 01 Jan 24 @ 7:30 pm
djkrysrPRO InfinityMember since 2010
Hi
I have programmed my track button to do different things depending on where the cursor is, so when on the 'Ask The DJ' folder I can't check

browser_window "sideview" ? sideview "askthedj://" ? search "`get_browsed_song 'message'`"

to get Virtual DJ to search music for the song highlighted.

However there is also the "Recommended Next" & "Similar Songs" folders within Sideview, and also now we have "Charts" under Folders.
All these folders allow searching so is there any way to detect when I in a searchable folder, or to specifically test for these folders (and subfolders where Charts is concerned) to trigger search when browsing them.
I know the easiest thing would be to program a dedicated button or key to search no matter where you are, but I wondered if this was possible.
Thanks anway.
 

Posté Sat 06 Jan 24 @ 11:34 pm
locoDogPRO InfinityModeratorMember since 2013
using
get_sideview_title & debug
would have given you hints for the sideview
they return the string "remixes" no matter which it is (next, similar....)

then looking for something common for chart listings, like filepath is always empty, let's look what it really returns
get_browsed_filepath & debug

they all return "search://SOMECATALOGUENUMBER"
so first 9 chars are always "search://"

we can, param_cast text 9
to get just the first 9 chars then make that part of a test for equivalency

browser_window sideview ? sideview "askthedj://" ? search "`get_browsed_song 'message'`" : sideview remixes ? search "`get_browsed_song title`" : : browser_window songs ? param_equal `get_browsed_filepath & param_cast text 9` "search://" ? search "`get_browsed_song title`" : load
 

Posté Sun 07 Jan 24 @ 12:48 am
djkrysrPRO InfinityMember since 2010
Ok so you are absolutely amazing, I am gonna have to sit down & think about what you’ve said in the morning after work but the fact that you are able to offer a solution so quickly is mind blowing, I am gonna play in the morning & thank you so much
 

Posté Sun 07 Jan 24 @ 3:31 am
Baldy68PRO InfinityMember since 2019
locodog wrote :
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


Thank you for this information! I am now finally in progress building my custom revolutionary DJ controller.
I assume this applies to my problem that the FX locks up when I use several of them on same song but on different stems?
For testing purposes I use the native FX Echo, Reverb and Flanger.
I have looked after the installation folder for all FX to rename and duplicate a few for testing, but I can't find them!? In documents I only see *.ini files for the audio effects. In folders, "AppData" or in "Program Files" I found nothing relevant to rename.

The plan is to use a name scheme for the actual files, something like this:
Echo_Deck1_Vocals.exe
Echo_Deck1_Instruments.exe
Echo_Deck2_Vocals.exe
Echo_Deck2_Instruments.exe

Reverb_Deck1_Vocals.exe
Reverb_Deck1_Instruments.exe
Reverb_Deck2_Vocals.exe
Reverb_Deck2_Instruments.exe
And so on.

I uninstalled all FX I do not use in case it takes unnecessary resources, because there will be MANY instances of same FX loaded now (from different files) since I will have 3 FX on every stem on both decks, lol.

Could maybe Locodog once more bring clarity in my challenges? :-)
 

Posté Mon 08 Jan 24 @ 2:21 pm
locoDogPRO InfinityModeratorMember since 2013
native fx are built in, you can't make duplicate copies, the only thing there is to see is .ini

As for making copies of external fx/vst, which are .dll, not .exe, you don't need per deck copies that wouldn't help and make mapping harder.
One named copy for each stem slot is what you need.
 

Posté Tue 09 Jan 24 @ 5:11 am
Baldy68PRO InfinityMember since 2019

Ok, then I will install third party FX's.
When I for example add an FX on the vocals on the Deck 1 when I stem-mix it out, I want it to trail into the next song (post stem-fader) without the vocals on Deck 2 song being affected, so I need to have the effects separated for every deck also I assume.
If it is not possible to allocate the same *.dll FX file in separate memory for different stems and decks...
 

Posté Sat 13 Jan 24 @ 2:52 pm
locoDogPRO InfinityModeratorMember since 2013
decks don't need their own copies, just stems
5 stems, 5 copies of the fx named differently, number of decks does not matter.
 

Posté Sat 13 Jan 24 @ 3:45 pm
91%