INTERACT FORUM
More => Old Versions => JRiver Media Center 25 for Windows => Topic started by: Antoine. on November 23, 2019, 06:55:20 pm
-
Hi,
I'm trying to setup 2 hotkeys with AutoHotKey, : 1) Stop after current file & 2) Stop after x minutes.
1) Stop After Current File: I'm having trouble using the "Stop after current file" MCC #10036. I tested the following command (in W10's CMD):
mc25.exe /MCC 10036
The command fails to activate.
I have tested the classic Stop (#10002) command with the following:
mc25.exe /MCC 10002
and sure enough it works...
The only way I manage to activate Stop after current file is by clicking on it in JRiver. Maybe the reference (10036) has changed or something?
2) Stop After x Minutes: Is there a MCC reference that stops playback after a given amount of minutes? (like in Player > More Stop > Stop after 10 minutes)? I cannot find it.
-
I'll look into these Monday and follow up. Thanks.
-
1) Stop After Current File: I'm having trouble using the "Stop after current file" MCC #10036. I tested the following command (in W10's CMD):
mc25.exe /MCC 10036
The command fails to activate.
This is the full command:
MCC_STOP_AFTER_CURRENT_FILE, // [bool bStopAfterCurrentFile (-1 toggles)]
So if you send 0 (or nothing) as the second parameter, it's setting it to off.
Try:
mc25.exe /MCC 10036,1
Or:
mc25.exe /MCC 10036,-1
And for your second question, look at:
MCC_STOP_AFTER_DELAY = 10067
This is the parameter:
MCC_STOP_AFTER_DELAY, // [int nMinutes]
Hopefully that gets you going.
-
Try:
mc25.exe /MCC 10036,1
Tanks, this works!
And for your second question, look at:
MCC_STOP_AFTER_DELAY = 10067
This is the parameter:
MCC_STOP_AFTER_DELAY, // [int nMinutes]
Hopefully that gets you going.
So to execute a Stop after 30 minutes, should I write something like this into CMD?
mc25.exe /MCC 10067,30
It does not work and I cannot find further information about this MCC in the wiki (https://wiki.jriver.com/index.php/Media_Center_Core_Commands) because the information has not been added there.
-
I just tried MC25.exe /MCC 10067,30 and it changed to stopping after 30 minutes in the menu. Then I fired MC25.exe /MCC 10067,10 and the 10 minute choice was selected in the program.
-
Ha!
I actually didn't try one of the value (10, 30 or 60) that's being proposed in JRiver's menu. I just tried 2 minutes (mc25.exe /MCC 10067,2) and this does not appear to work.
I tried "mc25.exe /MCC 10067,10" and it works fine indeed as the the relevant option in the menu is ticked.
I'd like to be able to add at least 90 min. & 120 min. as sleeper time. Is there a way to do it now?
-
Ha!
I actually didn't try one of the value (10, 30 or 60) that's being proposed in JRiver's menu. I just tried 2 minutes (mc25.exe /MCC 10067,2) and this does not appear to work.
I tried "mc25.exe /MCC 10067,10" and it works fine indeed as the the relevant option in the menu is ticked.
I'd like to be able to add at least 90 min. & 120 min. as sleeper time. Is there a way to do it now?
I think we should accept the values of 90 or 120 no problem. They just won't be shown in the menu, but they will be used.
-
I think we should accept the values of 90 or 120 no problem. They just won't be shown in the menu, but they will be used.
I've just tested the value of 2 minutes and it does not stop playback.
-
I've just tested the value of 2 minutes and it does not stop playback.
It worked fine for me in my test. Keep in mind it doesn't stop in 2 minutes but instead triggers a stop after the file it's playing at the two minute mark. That way it always finishes the file it's on.
-
Okay, I did a test, I've launched a music playlist and then executed the command: n is the track playing when the command is sent, n+1 the next one, etc.
Keep in mind it doesn't stop in 2 minutes but instead triggers a stop after the file it's playing at the two minute mark.
I thought it would stop playback 2 minutes after the beginning of track n+1.
What the timer does is I've now understand is that it stops playback at the end of the track during which the timer expires.
It may be ok for music, but it's not perfect for everything: if you listen to long podcast episodes for example and like to set a timer to not miss too much while you're asleep, MCC 10067 is not a great solution...
Thanks anyway, I hope you'll consider making this command 10067 more straightforward in the future & actually stop playback after a set amount of time (regardless of current file playback progress).
-
I'll make it so negative values issue a hard stop after that much time. It will be in a coming MC26.
Thanks for the suggestion.
-
Or a flag maybe? 0 to stop after current song when timer expires. 1 to stop immediately when timer expires.
Brian.
-
Hi blgentry.
We could have flagged the value with a high bit flag, but that's basically what negative is.
I've got it in and I think it's working great.
Thanks.