Quick Sign In:  

Forum: General Discussion

Topic: Script School - Page: 47.25
ChaksiPRO InfinityMember since 2011
Thanks Locodog... Much Appreciated

 

Posted Thu 19 Sep 24 @ 1:36 pm
locoDogPRO InfinityModeratorMember since 2013
@djkrysr new in EA build 8322

get_sample_info X type

X being sample slot number
 

Posted Wed 25 Sep 24 @ 1:10 am
djkrysrPRO InfinityMember since 2010
Great, thanks for letting me know this addition to the script, I will get straight on it.

 

Posted Wed 25 Sep 24 @ 10:18 am
djkrysrPRO InfinityMember since 2010
Tested the `get_sample_info` addition and it all works perfectly thanks.

Another thing I can' seem to work out is how to tell videos apart from karaoke tracks as they both return true with 'is_video', are you aware of a way to distinguish between the two formats using script as obviously VDJ can.

Thanks anyway
 

Posted Sat 05 Oct 24 @ 2:01 pm
agadj2PRO InfinityMember since 2021
Hi friends.
I´m triying program a custom button in each deck. who gets the loaded song and add it to a specific virtual folder.
I triyed lots of combinations but almost times the track added is from browser selection. and i would it be from each deck the track is playing or simply loaded on it.

 get_text "`get_loaded_song 'drive'`:`get_loaded_song 'filepath'`" & param_cast 'text' & browser_gotofolder & add_to_list  "R.B.K/OCTUBRE"  & get_filename


get_text `get_loaded_song 'drive'`:`get_loaded_song 'filepath'`" & Add_to_list 'text' 


search " `get_text "`get_loaded_song 'title`:`get_loaded_song 'artist'` " & param_cast 'text'  & add_to_list  "GUIYEYDJ/SEPT"


i´ve triyed it by different ways but noone giveme succes.
thanks for any support.
regards


 

Posted Wed 09 Oct 24 @ 3:10 pm
agadj2PRO InfinityMember since 2021
Hi solved i got it....
I find the answer and almost script did it in a pad from @locodog it was rate n color and give me the way to get success...
If some one would use it i left here the script. is for use in custom buttom from player (not buttons in browser)

get_title_remix & param_cast & search & repeat_start 'rsCTFD' 250ms 1 & add_to_list   "YOUR VIRTUAL FOLDER/YOURVIRTUALSUBFOLDER" 


VIRTUALFOLDERSnow are calling "local list" so i`m not update it in my brain.

Maybe works finest if use get_tittle_artist instead get_tittle_remix, if you do it will be appreciate any comment about.

Hope it will be useful for someone.


Regards!!!
 

Posted Fri 11 Oct 24 @ 6:13 pm
Hi

I'm trying to map the left and right EQ_HI controls on a z2 to make it 4 deck compatible.
both left and right high EQ appear to activate the same midi control script. This is not a problem when it is calling eq_high (as it can determine whether it is left or right), however when I specify deck left eq_high, which swaps between A & C , the right high EQ knob also only works on the Deck A & C. eq_high on its own can determine the context somehow.
1) how is it context sensitve when the mapper appears to indicate it calls the same script.
2) how can I correct my code to allow the left high EQ to call deck left eq_high and the right EQ knob to call deck right eq_high ?

Thanks
 

Posted Fri 11 Oct 24 @ 9:20 pm
agadj2PRO InfinityMember since 2021
In 4 decks controllers you have a button to select between 1-3 decks or 2-4
need one button for make change in each deck

Like
toggle "$deck13"
and other like
toggle "$deck24"

in your knob have to question this variable
eq_high left

var_equal "$deck13" 0 ? deck 1 eq_high : deck 3 eq_high

in eq_hi for right ....
var_equal "$deck24" 0 ? deck 2 eq_high : deck 4 eq_high

hope be useful.
good luck and comment if was useful .
bye
 

Posted Fri 11 Oct 24 @ 11:25 pm
mg_1978PRO InfinityMember since 2008
Hi…
wich is different about new script “sampler_rec_delete” and existing script “browser_remove”?
thanks
 

Posted Fri 18 Oct 24 @ 9:36 am
AdionPRO InfinityCTOMember since 2006
sampler_rec_delete deletes a sample from the 'recordings bank', not matter if it is visible or selected.
browser_remove removes the selected track from the list currently highlighted in the browser
 

Posted Fri 18 Oct 24 @ 9:59 am
Hello, i Need help for a Script:
I have put a shortcut on the folder/search Tidal and subfolder Video. this works great and I can search directly. Now I want to call up the shortcut with the keyboard.
Thnax
 

Posted Sat 19 Oct 24 @ 2:31 pm
locoDogPRO InfinityModeratorMember since 2013
browser_shortcut X & search

X being the number of the shortcut.
 

Posted Sat 19 Oct 24 @ 2:41 pm
browser_shortcut X & search - this works perfectly.
Is it possible to have the same functionality as the ‘normal’ mp3 search? If there is no track in the database, does it search Tidal first? But just for videos?
 

Posted Tue 29 Oct 24 @ 2:24 pm
hi there,

is there a way to use the script
keyboard_shortcut
anyhow to have the function "playback keys use shift" as in serato?
I'm so used to have it like that.
 

Posted Tue 12 Nov 24 @ 9:12 pm
locoDogPRO InfinityModeratorMember since 2013
Aren't you then just mapping to SHIFT+KEY ?

but if you mean to toggle just map shift button to the script you included.
 

Posted Tue 12 Nov 24 @ 9:59 pm
locoDog wrote :
Aren't you then just mapping to SHIFT+KEY ?

but if you mean to toggle just map shift button to the script you included.


Yes I thought to do whole new mapping. But it would be easier to have the existing mapping overscripted with the shift key.
 

Posted Tue 12 Nov 24 @ 10:22 pm
mg_1978PRO InfinityMember since 2008
Hi, is there a script to have sampler quantize? I would samples in beat with the song…thanks a lot
 

Posted Mon 25 Nov 24 @ 10:34 am
AdionPRO InfinityCTOMember since 2006
Recording samples follows the loop quantize setting
 

Posted Mon 25 Nov 24 @ 10:39 am
mg_1978PRO InfinityMember since 2008
Adion wrote :
Recording samples follows the loop quantize setting


in drop mode only tempo sync? right?

 

Posted Mon 25 Nov 24 @ 10:58 am
AdionPRO InfinityCTOMember since 2006
Yes, indeed for loop mode.
You could create the sample as loop and change to drop in sample editor if you really need quantized start for drops, but probably more rarely needed
 

Posted Mon 25 Nov 24 @ 11:43 am
96%