Platform: Windows 10 (Version 1607 Build 14393.447)
Plex Media Player Version: PlexMediaPlayer 1.2.0.481-b45bbf24 (windows-x86_64 10)
Keyboard: Logitech G710+
Problem: Media keys on keyboard not working with Plex Media Player. The media keys work perfectly with the Plex Chrome App but not the Plex Media Player. I have tried restarting and having no other media applications open. I have made sure I have the latest drivers for my keyboard.
Steps to produce: Start playing video in Plex Media Player. Press any of the media keys. Should stop/pause/play but does nothing.
+1
This is the main reason I’m not using PMP as my main player. If I could get proper Windows playback integration from PMP (in desktop mode) I’d be so happy.
+1
I’m having the same issue, and It has forced me to use the WS version, which has been quite buggy for me. This is the #1 thing for me on the regular desktop player.
That works for me. Maybe you have a stale custom input conf in your PMP profile directory? If not, please post the PMP log that includes you pressing the button. Maybe the keycode is somehow different.
I also feel strongly that this is a key feature that I would really like to see fixed soon - I have Version 1.5.5.3634 which Plex says is up to date. The media keys don’t work, even with focus.
C’mon guys, if microsoft can make medias work, surely you can? (globally, so not in focus as well)
Does anyone know of a desktp media player (other than MS) that does use the media keys?
+1 on this.
LOTS of keyboards have media keys and if you are already using them when IN focus then please upgrade this functionality to allow this outside of focus as well
I’ve had another run at the out-of-focus media key issues, and have resorted to using an autohotkey script to throw media key presses to PMP specifically even if it’s minimised. The script also sends the keypresses to the OS so everything should still work as expected even if PMP is not running. I’ve converted it to an *.exe if anyone wants to use it- just run the *.exe and media keys should work with PMP with or without focus. Download
@TheMooDude said:
I’ve had another run at the out-of-focus media key issues, and have resorted to using an autohotkey script to throw media key presses to PMP specifically even if it’s minimised. The script also sends the keypresses to the OS so everything should still work as expected even if PMP is not running. I’ve converted it to an *.exe if anyone wants to use it- just run the *.exe and media keys should work with PMP with or without focus. Download
Nothing too complicated or anything. Hope it’s useful.
~Media_Next::
ControlSend,,{Media_Next},Plex Media Player
return
~Media_Prev::
ControlSend,,{Media_Prev},Plex Media Player
return
~Media_Stop::
ControlSend,,{Media_Stop},Plex Media Player
return
~Media_Play_Pause::
ControlSend,,{Media_Play_Pause},Plex Media Player
return
@TheMooDude said:
Nothing too complicated or anything. Hope it’s useful.
~Media_Next::
ControlSend,,{Media_Next},Plex Media Player
return
~Media_Prev::
ControlSend,,{Media_Prev},Plex Media Player
return
~Media_Stop::
ControlSend,,{Media_Stop},Plex Media Player
return
~Media_Play_Pause::
ControlSend,,{Media_Play_Pause},Plex Media Player
return
@TheMooDude said:
Nothing too complicated or anything. Hope it’s useful.
~Media_Next::
ControlSend,,{Media_Next},Plex Media Player
return
~Media_Prev::
ControlSend,,{Media_Prev},Plex Media Player
return
~Media_Stop::
ControlSend,,{Media_Stop},Plex Media Player
return
~Media_Play_Pause::
ControlSend,,{Media_Play_Pause},Plex Media Player
return
That AutoHotKey script is priceless! Many thanks!!