After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 394207 - qt browser plugin should support icy:// URL's
qt browser plugin should support icy:// URL's
Status: RESOLVED FIXED
Product: totem
Classification: Core
Component: Browser plugin (obsolete)
unspecified
Other Linux
: Normal normal
: ---
Assigned To: totem-browser-maint
totem-browser-maint
Depends on:
Blocks:
 
 
Reported: 2007-01-08 12:08 UTC by Thomas Vander Stichele
Modified: 2007-01-10 15:59 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Thomas Vander Stichele 2007-01-08 12:08:17 UTC
A sample test page: http://www.catradio.cat/pilotcatradio/

dev docs on the subject:
http://developer.apple.com/documentation/QuickTime/QT6WhatsNew/Chap1/chapter_1_section_58.html

icy:// is just a made-up protocol to instruct quicktime that urls in an .m3u file are in fact http mp3 streams
Comment 1 Bastien Nocera 2007-01-10 14:39:49 UTC
That's one little bit fixed:

        * src/plparse/totem-pl-parser-lines.c:
        (totem_pl_parser_get_extinfo_title): Handle both ":" and ","
        as a field separator as seen used at
        http://www.catradio.cat/pilotcatradio/
Comment 2 Bastien Nocera 2007-01-10 15:16:54 UTC
And a bit more:

        * browser-plugin/totemNarrowSpacePlugin.cpp:
        Allow the QuickTime plugin to handle audio/x-mpegurl
        as at http://www.catradio.cat/pilotcatradio/
Comment 3 Bastien Nocera 2007-01-10 15:59:25 UTC
2007-01-10  Bastien Nocera  <hadess@hadess.net>

        * src/backend/bacon-video-widget-gst-0.10.c:
        (bacon_video_widget_open_with_subtitle):
        * src/backend/bacon-video-widget-xine.c:
        (bacon_video_widget_open_with_subtitle):
        Handle "icy://" URLs in the backends

        * src/plparse/totem-pl-parser.c: (totem_pl_parser_parse_internal):
        Ignore "icy:" URLs just like we do for mms: and rtsp: ones

        (Closes: #394207)

It still screws up because of other bugs, but ICY is now supported.