Matt Seeley

Results 99 comments of Matt Seeley

> The flatpak image seems to be slow and can become unresponsive. It also doesn't look like it supports subtitles (complains about vobsob?) and transcodes media that would be directly...

Hi @Mitzsch01 👋 Although we typically we close feature requests pretty quickly to keep this repo focused on defects. I'll tag this one as a general av support issue. We'll...

I'm no expert on this but that screenshot looks like a crash within QT dealing with GL. - There's a `useOpenGL` setting in my PMP conf. The user could try...

Thanks @dan-the-man-nz. I've mirrored the file here: https://drive.google.com/file/d/10f_1ytN5y34rjwvxmgf1kCeIgSqEEKb8/view?usp=sharing Confirmed playing fine in standalone `mpv 0.28.2` (latest 0.29.1). @rcombs anything in the log above or probe below look explainable? ``` ffprobe...

~Anecdotally I'm anticipating our ffmpeg version is similarly antiquated as our MPV version.~ No, that's an uniformed assumption.

We have plans to update our shared FFMPEG dependency in early 2019. We're currently around version 3.4. An upgrade has been in the cards for months although it's been complicated...

Investigating on macOS High Sierra and PMP 2.21.0, problems from the get go. `InputComponent.cpp` logging illustrates the problems. First, in the TV layout, the Meta (Command) is being treated as...

The mis-mapped modifier keys are coming directly from Qt. Eg, logging `modifiers.toString()` in the below code block logs `Ctrl+` when I push the Meta key: https://github.com/plexinc/plex-media-player/blob/4839cbf2c610c6b77656ba40a41bc6754c871ba8/src/ui/EventFilter.cpp#L26-L29

The modifier key swapping is _another_ Qt bug: https://bugreports.qt.io/browse/QTBUG-51293. Qt is so backwards; swapping Ctrl and Meta isn't logical default behavior. Introduced in 5.5.1 and resolved in 5.11.0; we're still...

Okay, I've worked around the problems above in this branch: https://github.com/plexinc/plex-media-player/commits/mseeley/799-shortcuts. Changes: - Manually remap Control and Meta presses on MacOS. I built the remapping to only operate on MacOS+Qt...