We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug - in Wayland playing video always in second window in Baka-MPlayer. mpv-examples/libmpv/qt/ also have this bug.
Fix - file src/mpvhandler.cpp add to line 31:
src/mpvhandler.cpp
mpv_set_option_string(mpv, "gpu-context", "x11egl"); // xWayland Sway fix
(x11egl or x11, because mpv use it) it seems for now, tested Apr 2023, it work only with x11egl
x11egl
x11
Other way to fix, more code to change - look on mpv-examples/libmpv/qt_opengl/ copy this method of overlay integration.
The text was updated successfully, but these errors were encountered:
Something changed in Wayland and it seems MPV window integration to Baka-MPlayer works only when gpu-context is x11egl.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Bug - in Wayland playing video always in second window in Baka-MPlayer. mpv-examples/libmpv/qt/ also have this bug.
Fix - file
src/mpvhandler.cpp
add to line 31:(
x11egl
orx11
, because mpv use it)it seems for now, tested Apr 2023, it work only with x11egl
Other way to fix, more code to change - look on mpv-examples/libmpv/qt_opengl/ copy this method of overlay integration.
The text was updated successfully, but these errors were encountered: