-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
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
Gtk4 - example #222
Comments
did you find a solution? |
I'm also in need of a solution. As of now, I've managed to render in GTK4 using OpenGL with this gist, but it's very buggy when resizing. Any workarounds for native MPV? |
This worked for me
|
@d3im You are trying to access a X11 window function on GTK 4.0. This will definitely not work on Wayland, too. And GTK 4.0's main focus is Wayland. There are even plans to drop X11 support in GTK 5.0: https://www.phoronix.com/scan.php?page=news_item&px=GTK5-Might-Drop-X11 The render context API should be the way to go. I have experimented with Qt 5 and Qt 6: https://github.com/trin94/qtquick-mpv @bscubed Consider using self._ctx.render(
flip_y=True,
opengl_fbo={'w': width, 'h': height, 'fbo': fbo},
block_for_target_time=False,
) Documentation is located here: https://github.com/mpv-player/mpv/blob/master/libmpv/render.h#L300-L316= As stated, you may want to set |
I've created a poc: https://github.com/trin94/python-mpv-gtk4 |
I agree with @trin94 here. The legacy way of rendering video into an UI component was to get a display-manager-level handle to the UI component from the UI toolkit (e.g. an X11 window ID) and hand that to libmpv. The disadvantage of this is that both your app and libmpv have to have separate code paths for every display manager out there. Beyond the issue of Linuxes now commonly having either one of X11 or Wayland, this approach also doesn't work on Windows or Mac. Using OpenGL via render contexts really is the clean solution to this. OpenGL here is a shared API that will work on all platforms, including Wayland and Windows. While it seems more complicated at first, it will make cross-platform compatibility much easier in the long run. @trin94 Is the URL of your example repo stable? I would like to link it in the README. |
Thanks for the detailed write-up and example repo, @trin94 . Turns out that the buggy resizing wasn't a product of MPV or OpenGL, but a GTK-specific bug that I've sorted out. I'll adjust my OpenGL implementation to include bits from your example, as it looks really well written and includes checks for EGL and GLX. This definitely seems like the clean solution for GTK going forward. |
@jaseg Yes, the url is stable. You/I can also make a gist out of it so that we can link it in the README 👍 Whatever you chose, we should also make people aware of the thing with the |
Trying to modify PyGobject example for Gtk4
I can't get over this line - get XID of window since widget lacks window property
The text was updated successfully, but these errors were encountered: