Results 16 comments of g-fb

Here's flatpak manifest (edited from the one for my own player). The app runs, but playback fails. You build and run it with `flatpak-builder build com.github.mpc-qt.yml mpc-qt --force-clean --ccache &&...

Works once it's installed. ``` flatpak-builder --user --install --force-clean build com.github.mpc-qt.yml flatpak run com.github.mpc-qt ```

Wow, I forgot to link the sample project, here it is https://gitlab.com/g-fb/memory-extraction. > What OS are you in openSUSE Tumbleweed > what archive type are you trying to extract? There...

Thanks for the explanation. > emits error even though the finished signal is emitted and the file names are printed by qDebug(). > When I pass archiveFile directly sometimes it...

> Also you can just simply pass the archive path as string to the constructor. Same thing happens. > Can you please verify if this bug exists even if you...

It doesn't happen everytime, but very often, even if I wait few seconds between extractions. It even happens on the first extraction.

The error seems to come from `QCoreApplication::processEvents();` being [inside the loop](https://github.com/antony-jr/QArchive/blob/master/src/qarchiveextractor_p.cc#L932). If I move `QCoreApplication::processEvents();` outside the loop I don't get the error anymore.

> general wayland icon Maybe it's this issue https://nicolasfella.de/posts/fixing-wayland-taskbar-icons/

You're starting playback before the renderer is ready so mpv creates it's own window. You might be interested in https://invent.kde.org/libraries/mpvqt Here's a patch to fix this ```diff diff --git a/src/mpvobject.cpp...

Thanks for fixing these. Still getting a few errors. If I include cstring `#include ` it stops complaining about memcpy . ```bash .../c++/QtMediaPlayer/src/backends/mpv/mpvqthelper.cpp: In member function ‘char* MPV::Qt::node_builder::dup_qstring(const QString&) const’:...