Jonas Kvinge

Results 185 comments of Jonas Kvinge

I manually rebased and merged this in https://github.com/strawberrymusicplayer/strawberry/commit/80da565609fc84dea90e9e30b1b870263e49fc18 I made a couple of changes: - I changed `TagReaderBase::ReadFile` to return `bool`, it returns true when the format is recognized by...

This doesn't look right, shouldn't it be UTF-16 also with Qt 5? That's what's used in Clementine. ``` #if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0) fileTagStream.setEncoding(QStringConverter::Utf16); #else fileTagStream.setCodec("UTF-8"); #endif ```

Unfortunately that breaks the back button so I can't do it. I see no immediate easy fix for this.

Have you tried changing the buffer settings in the backend settings? Try turning off buffering by setting buffer duration to 0.

I'm not sure this really is a bug at all. It works for most users. Streaming might not work reliable under poor internet connections. To be honest this isn't something...

Unable to reproduce any issues, testing with netem both limiting the connection and adding packet loss.

Pretty sure the issues are related to libsoup version 3. Since gstreamer 1.20, libsoup is loaded at runtime, and (for some reason) version 3 is prioritized, see: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/blob/main/subprojects/gst-plugins-good/ext/soup/gstsouploader.c#L172 Try uninstalling...

The file `gstsouploader.c `in the gst-plugins-good package

To see which version is loaded on startup you can use: `export GST_DEBUG=2,soup:5` Start strawberry on the terminal. Patch here: https://gitlab.freedesktop.org/jonaski/gstreamer/-/commit/227f5916d0943b30db6dac97d2dded2373c54019.patch if both versions are installed you need to delete...