I have a list of songs I would like to load into the automix. When I press a custom button, I would like it to start the automix and goto_cue 1 (which I can get working) and then play that song until it reaches cue 2 and then fade a few beats before moving to the next song at its cue 1 until the list is done or I turn off the button. I am wanting to use this during Money Dances, but I want to control where each song starts and stops. I feel this should be a lot easier than I'm finding it. Any ideas for me? Thanks!
发表时间 Thu 05 Oct 23 @ 7:04 am
Not exactly what you're looking for, but possibly helpful
DennYo Beats wrote :
Auto Play der Titel aus der Songliste.
Zum Script:
Ist der Script aktiv, wird immer am Ende des Songs das nächste Lied aus der Songliste geladen und abgespielt.
markiert man in der Songliste ein anderes Lied, wird dieses als nächstes abgespielt. Dabei kann auch der Ordner gewechselt werden.
Ist man am Ende der Songliste angekommen, stoppt der Script und dioe Musik wird paussiert.
Zum Script:
Ist der Script aktiv, wird immer am Ende des Songs das nächste Lied aus der Songliste geladen und abgespielt.
markiert man in der Songliste ein anderes Lied, wird dieses als nächstes abgespielt. Dabei kann auch der Ordner gewechselt werden.
Ist man am Ende der Songliste angekommen, stoppt der Script und dioe Musik wird paussiert.
(repeat_start 'loadnextplay' ? blink : nothing ) &
( action_deck 1 ? deck 2 repeat_stop 'loadnextplay' & deck 3 repeat_stop 'loadnextplay' & deck 4 repeat_stop 'loadnextplay' ) &
( action_deck 2 ? deck 1 repeat_stop 'loadnextplay' & deck 3 repeat_stop 'loadnextplay' & deck 4 repeat_stop 'loadnextplay' ) &
( action_deck 3 ? deck 1 repeat_stop 'loadnextplay' & deck 2 repeat_stop 'loadnextplay' & deck 4 repeat_stop 'loadnextplay' ) &
( action_deck 4 ? deck 1 repeat_stop 'loadnextplay' & deck 2 repeat_stop 'loadnextplay' & deck 3 repeat_stop 'loadnextplay' ) &
( repeat_start 'loadnextplay' ? repeat_stop 'loadnextplay' : repeat_start 'loadnextplay' 100ms &
( songpos_remain 150ms ? browser_scroll 'bottom' ? param_equal `param_add "get_loaded_song 'title'" "get_loaded_song 'artist'"` `param_add "get_browsed_song 'title'" "get_browsed_song 'artist'"` ? repeat_stop 'loadnextplay' : nothing : nothing ) &
( songpos_remain 150ms ? param_equal `param_add "get_loaded_song 'title'" "get_loaded_song 'artist'"` `param_add "get_browsed_song 'title'" "get_browsed_song 'artist'"` ? pause & browser_window 'songs' & browser_scroll +1 & load & browser_scroll 0 & play : pause & browser_window 'songs' & load & browser_scroll 0 & play : nothing : nothing ) )
发表时间 Thu 05 Oct 23 @ 5:19 pm