Trying go get an HTTPS radio stream playing in Strawberry Music Player (audio/strawberry) results in: ------ No URI handler implemented for "https". ../gst/playback/gsturisourcebin.c(1774): gen_source_element (): /GstPlayBin3:pipeline-1-pipeline/GstURIDecodeBin3:uridecodebin3/GstURISourceBin:urisourcebin0 n ------ In addition to MP3/AAC playing, HTTPS radio streaming is probably the most common use case of a music player, which should work out-of-the-box. At least, Strawberry should provide a useful error message to suggest which plug-in to install. After some debugging, I found the solution: gstreamer1-plugins-soup, i.e.: sudo pkg install -y gstreamer1-plugins-soup fixes the issue. I suggest to add gstreamer1-plugins-soup as dependency of the Strawberry port, to just support radio stream playing out-of-the box.
(In reply to Thomas Dreibholz from comment #0) I hit this too when trying out Strawberry. Can we make sure this is shipped with functional internet streaming radio support?
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=b474e448fe246c014eb1154a949b3093826402a9 commit b474e448fe246c014eb1154a949b3093826402a9 Author: Jason E. Hale <jhale@FreeBSD.org> AuthorDate: 2025-11-17 05:57:48 +0000 Commit: Jason E. Hale <jhale@FreeBSD.org> CommitDate: 2025-11-17 06:11:08 +0000 audio/strawberry: Add missing dep for Radios devel/gstreamer1-plugins-soup is required for the Radios (HTTP/HTTPS streaming) feature to function. PR: 288099 Reported by: Thomas Dreibholz <thomas.dreibholz@gmail.com> MFH: 2025Q4 audio/strawberry/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
A commit in branch 2025Q4 references this bug: URL: https://cgit.FreeBSD.org/ports/commit/?id=f3cecd2d0049a5a765cbb4edf15716286abb2a12 commit f3cecd2d0049a5a765cbb4edf15716286abb2a12 Author: Jason E. Hale <jhale@FreeBSD.org> AuthorDate: 2025-11-17 05:57:48 +0000 Commit: Jason E. Hale <jhale@FreeBSD.org> CommitDate: 2025-11-17 06:13:26 +0000 audio/strawberry: Add missing dep for Radios devel/gstreamer1-plugins-soup is required for the Radios (HTTP/HTTPS streaming) feature to function. PR: 288099 Reported by: Thomas Dreibholz <thomas.dreibholz@gmail.com> MFH: 2025Q4 (cherry picked from commit b474e448fe246c014eb1154a949b3093826402a9) audio/strawberry/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
Sorry folks, somehow I missed this. Thanks for the report Thomas and thanks for bumping it, Mark.