Bug 288099 - audio/strawberry: Missing dependency on HTTP/HTTPS streaming plug-in
Summary: audio/strawberry: Missing dependency on HTTP/HTTPS streaming plug-in
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Many People
Assignee: Jason E. Hale
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-07-08 12:37 UTC by Thomas Dreibholz
Modified: 2025-11-17 06:15 UTC (History)
1 user (show)

See Also:
jhale: maintainer-feedback+


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Thomas Dreibholz 2025-07-08 12:37:19 UTC
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.
Comment 1 Mark Felder freebsd_committer freebsd_triage 2025-11-14 20:08:35 UTC
(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?
Comment 2 commit-hook freebsd_committer freebsd_triage 2025-11-17 06:12:13 UTC
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(-)
Comment 3 commit-hook freebsd_committer freebsd_triage 2025-11-17 06:14:15 UTC
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(-)
Comment 4 Jason E. Hale freebsd_committer freebsd_triage 2025-11-17 06:15:37 UTC
Sorry folks, somehow I missed this. Thanks for the report Thomas and thanks for bumping it, Mark.