Page 1 of 3
one fader 2 players
Posted: 14 Sep 2023 14:13
by tatje
hello Bernd,
I work here on my mixing console with 1 fader for 2 players.
when I start the fader it plays a track on player A, when I pull the fader back to 0 position I use this command EXEC_COMMAND2 ${autoplay}|equals(0)|PLS_CURRENT_EJECT_CURRENT.
and when I start the fader again, the next track plays in player B.
so far so good. my question, is it possible that when the track starts the function EXEC_COMMAND2 ${autoplay}|equals(0)|PLS_CURRENT_EJECT_CURRENT. only works when the track plays for 5 seconds?.
The case is that if you start the track with the fader up and then change your mind, you pull back the fader and then delete the track (I would like to have 5 seconds of thinking time before the function EXEC_COMMAND2 ${autoplay}|equals(0) )|PLS_CURRENT_EJECT_CURRENT works)
Re: one fader 2 players
Posted: 14 Sep 2023 21:33
by radio42
Code: Select all
EXEC_COMMAND2 ${autoplay}|Equals(0)|EXEC_COMMAND2 ${cpltimepos}|Greater(5.0)|SHOW_ALERT_WINDOW|PLS_CURRENT_EJECT_CURRENT
First you check, that AutoPlay is off (${autoplay}|Equals(0)).
If that is the case you check, if the current playing tracks position is > 5.0 (${cpltimepos}|GreaterEq(5.0)).
Re: one fader 2 players
Posted: 15 Sep 2023 19:05
by tatje
Hello Bernd, that's what I meant, thank you.
the code is now like this:
EXEC_COMMAND2 ${autoplay}|Equals(1)|PLS_CURRENT_PAUSENOFADE_CURRENT
EXEC_COMMAND2 ${autoplay}|Equals(0)|EXEC_COMMAND2 ${cpltimepos}|Greater(5.0)|PLS_CURRENT_EJECT_CURRENT
EXEC_COMMAND2 ${autoplay}|Equals(0)|EXEC_COMMAND2 ${cpltimepos}|Less(5.0)|PLS_CURRENT_PAUSENOFADE_CURRENT
EXEC_COMMAND2 ${autoplay}|Equals(1)|SHOW_COUNTDOWN 3600|PLAYLIST IS STILL ON AUTOMATIC
Re: one fader 2 players
Posted: 17 Sep 2023 14:43
by tatje
Hello bernd,
another question, is there also a macro for the stanby player?
EXEC_COMMAND2 ${autoplay}|Equals(0)|EXEC_COMMAND2 ${cpltimepos}|Greater(3.0)|STANDBY_EJECTNOFADE 1
Re: one fader 2 players
Posted: 17 Sep 2023 14:50
by radio42
Yes, see the User Manual Appendix it contains all macros and available control-commands and is always accurate.
All Standby Player commands so start with STANDBY…
Re: one fader 2 players
Posted: 17 Sep 2023 19:53
by tatje
Hello Bernd,
Unfortunately I cannot find the macro for the timepos for the track in the standby player in the manual.
this one for the playlist track (${cpltimepos} : the track position in seconds of the current playlist ).
but this does not work for the track in the standby player.
the only macros related to the standby player that I see are these .(${standbyXisplaying} : is standby player of the standby player X (as a string) .
${standbyXtrackname} : the current trackname of the standby player.
Tatje,
Re: one fader 2 players
Posted: 17 Sep 2023 20:06
by radio42
For the time position of the standby player there is no macro! Only various commands to play the standby player.
Re: one fader 2 players
Posted: 17 Sep 2023 20:25
by tatje
Okay Bernd,
that's too bad.
I wanted the same as described above for the standby player.
thank you for your response.
Re: one fader 2 players
Posted: 17 Sep 2023 22:42
by radio42
Not sure for what use case, but currently this is not possible. Ie. you can not control all features Nd players with just one fader.
I can put your desire on the wish-list, but I am not sure, when this is possible to implement.
The macro you mentioned will already work (except your 5 seconds grace period). But I don’t see this as critical, as standby players work different than DJ Players, ie. they don’t eject tracks by default anyhow. As such, I don’t really see the grace period necessary here.
Re: one fader 2 players
Posted: 18 Sep 2023 10:16
by tatje
Hello Bernd,
The fact is that I use 1 fader to control the 2 players of the playlist, and I use 1 other fader for the stanby player and/or the cartwal.
I start this standby player with the following command (EXEC_COMMAND2 ${autoplay}|Equals(0)|STANDBY_PLAYNOFADE 1) .
And fader stop command(CW1_STOP_ALL
CW2_STOP_ALL
CW1_DESELECT_ALL
CW2_DESELECT_ALL
EXEC_COMMAND2 ${autoplay}|Equals(0)|STANDBY_EJECTNOFADE 1).
And with this fader I also use the cartwal, so 2 functions.
If you make a macro in the future for the standby player with the possibility of a reflection period, I will eagerly await this.
Thanks in advance for your response.
Greetings Tatje