How to pause VLC player when it is minimized on Windows 10
The Netflix app automatically pauses when you minimize it, or when you lock your system. The Movies & TV app on Windows 10 used to do that as well but it doesn’t anymore. It was a great feature but not many media apps support it. VLC player is, of course, the exception. There’s an option to automatically pause anything that’s playing in VLC player when you minimize the app. Here’s how to enable it.
Pause VLC player when minimized
Open VLC player and go to Tools>Preferences. On the Preferences window, go to the Interface tab. Here, look for the ‘Pause playback when minimized’ option. Enable it, and click the Save button at the bottom. Close VLC player, and open it.
While the feature is great and offers a quick way to pause whatever it is you’re watching and hide the app window at the same time, it would be better if it also worked when you locked the system. There’s no way to force it to pause on system lock. When you return to VLC player i.e., when you maximize it and return the app to the foreground, the media will start playing again. If you pause a video and then minimize it, this functionality will not be activated. When you return to the app window, the media won’t automatically start playing because you paused it deliberately.
VLC player has had this functionality for a very long time. Windows 10 only recently added, and then removed it from the Movies & TV app and gave no reason for the change. It wasn’t expected behavior for most users but the feature was still useful.
It’s odd that there isn’t an app for the job. There used to be an app called MonitorES that could pause media when a user locked their screen but it has long gone out of development. The app can still be downloaded from Github but it isn’t going to work on Windows 10. Even when it was under development, the app only worked with select apps like the Windows Media Player. VLC player wasn’t in the list of supported apps. The gap left by MonitorES has yet to be filled.
Given this is a useful function, you can use the dedicated media keys on your keyboard to pause what’s playing. If the player you’re using works with these keys, you should be able to pause playback even after locking the screen. They tend to work with most popular media players so you technically just need to develop the habit for it.
It’s not quite what is asked here, but I stumbled on this page when trying to look for the solution I needed. Maybe it’ll help someone.
There is a workaround if you use a script. For example, I use a mouse gesture software (StrokesPus.net) and wanted to minimize VLC to the system tray without my music stopping with a gesture. (I think you can do that with a macro as well, then assign such macro to a keyboard button.)
For that, I first assigned a [Boss Key] in VLC settings in [Tools→Preferences—Hotkeys] (“Esc” in my case, instead of “Exit full screen”, as you can exit it by double clicking). Then I also assigned a global [Play / Pause] combination (“Fn” + “F7” in my case). Then, I activated the script record function in StrokesPus.net and pressed “Esc”, then “Fn” + “F7”. You will have pauses between keystrokes; if you want your script to execute in full immediately, you’ll need to set those pauses to the minimum value.
If someone’s interested, you can find the code for my script — I think it’s Java? Not sure — that works for me in StrokesPlus.net here (I can’t have multiple lines for some reason): https://forum.videolan.org/viewtopic.php?f=14&t=158859&p=529706#p529706
Turns out, you can’t have new lines here… If someone’s interested, you can find the code for my script — I think it’s Java? Not sure — that works for me in StrokesPlus.net here: https://forum.videolan.org/viewtopic.php?f=14&t=158859&p=529706#p529706
(It’s not quite what is discussed here, but I stumbled on this page when trying to look for the solution I needed. Maybe it’ll help someone.)
There is a workaround if you use a script. For example, I use a mouse gesture software (StrokesPus.net) and wanted to minimize VLC to the system tray without my music stopping with a gesture.
(I think you can do that with a macro as well, then assign such macro to a keyboard button.)
For that, I first assigned a [Boss Key] in VLC settings in [Tools→Preferences—Hotkeys] (“Esc” in my case, instead of “Exit full screen”, as you can exit it by double clicking). Then I also assigned a global [Play / Pause] combination (“Fn” + “F7” in my case).
Then, I activated the script record function in StrokesPus.net and pressed “Esc”, then “Fn” + “F7”.
You will have pauses between keystrokes; if you want your script to execute in full immediately, you’ll need to set those pauses to the minimum value.
My script (I think it’s Java but I’m not sure) that works for me in StrokesPus.net:
sp.ConsumePhysicalInput(true);
/*App Definition
Owner Class Name: Shell_TrayWnd
Root Class Name: Shell_TrayWnd
Parent Class Name: #32769
Class Name: Shell_TrayWnd
Module Path: C:\Windows
Module Name (EXE): explorer.exe
*/
sp.SendVKeyUp(vk.RETURN);
sp.Sleep(0);
sp.SendVKeyDown(vk.ESCAPE);
sp.Sleep(0);
sp.SendVKeyUp(vk.ESCAPE);
sp.Sleep(0);
sp.SendVKeyDown(vk.MEDIA_PLAY_PAUSE);
sp.Sleep(0);
sp.SendVKeyUp(vk.MEDIA_PLAY_PAUSE);
sp.ConsumePhysicalInput(false);
sp.ConsumePhysicalInput(false);
Kese worke karega please send email