Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to play shoutcast internet radio streams with html5?

Is it possible to play shoutcast (or some) internet radio streams with html5?

So I have next code:

<html>
<body>
<audio src="http://shoutcast.internet-radio.org.uk:10272/" />
</body>
</html>

I save it as HTML page and start my browser (Google chrome 4.0.249.78, safary or FF)

But it does not play/work!(

And it does not play with any other internet radio I tried to play!(

Why!?! What am I doing wrong?

btw: from HTML5 (including next generation additions still in development) 2.6.1 Protocol concepts User agents can implement a variety of transfer protocols, but this specification mostly defines behavior in terms of HTTP. [HTTP]

The HTTP GET method is equivalent to the default retrieval action of the protocol. For example, RETR in FTP. Such actions are idempotent and safe, in HTTP terms.

The HTTP response codes are equivalent to statuses in other protocols that have the same basic meanings. For example, a "file not found" error is equivalent to a 404 code, a server error is equivalent to a 5xx code, and so on.

The HTTP headers are equivalent to fields in other protocols that have the same basic meaning. For example, the HTTP authentication headers are equivalent to the authentication aspects of the FTP protocol.

like image 728
Rella Avatar asked Feb 09 '10 12:02

Rella


People also ask

How do I listen to Shoutcast streaming?

Go to the Media Library tab, select Online Services, and choose SHOUTcastRadio. Choose a radio station from the SHOUTcast Radio progressive menus or search for a specific station. To listen to a station, click Tune IN. Bookmark the stations you like so that you don't have to search for them again.

What happened to Shoutcast radio?

Because we are constantly evolving, we have decided to adapt our commercial offer to better meet professional radio's expectations. Along that line, we will no longer offer the option to host small scale radio stations. Thus, Shoutcast for Business plan is replaced by the Basic plan.

How do you play Icecast streams?

Just navigate your web browser to host/port the Icecast server is listening on. If you are a Windows user, make sure you started the Icecast server and then click on the shortcut in the Startmenu, it will open the Icecast status page in your browser.


10 Answers

Add a semicolon to the end of the http request. It IS the protocol set forth by shoutcast to override its browser detection. Like this example:

<audio controls src="http://shoutcast.internet-radio.org.uk:10272/;"></audio>
like image 176
Nate Sweet Avatar answered Oct 02 '22 15:10

Nate Sweet


HTML5 doesn't specify what audio formats (whether progressive or streaming) the player must support. That's up for the browser to determine, based on demand and implementation feasibility. In earlier drafts, we tried to specify a few baseline codecs and formats that all browsers must support, but each of the possible formats caused some browser vendor to refuse to implement it.

The following appears to work in Safari (4.0.4, WebKit nightly 6531.21.10, r54538, Mac OS X 10.6.2), but not Chrome or Firefox:

<!DOCTYPE html>
<audio controls src="http://shoutcast.internet-radio.org.uk:10272/"></audio>

(note that <audio> requires an end tag in the HTML serialization, it can't use an XML style self-closing tag, and I need to include controls or autoplay in order to actually start the audio)

This is likely due to the fact that Safari gets support for Shoutcast "for free" because it just uses QuickTime to handle any audio and video URLs it is given, and QuickTime already has support for Shoutcast. This can also lead to some strange bugs, as QuickTime's HTTP implementation is, well, quirky, to put it kindly.

I'd suggest filing bugs asking for Shoutcast support in browsers that don't support it. Here are the bug trackers for Firefox (Gecko/Mozilla), Chrome (Chromium), and Safari (if it happens not to work on Windows, or something like that).

like image 22
Brian Campbell Avatar answered Oct 02 '22 16:10

Brian Campbell


You can't do it with ShoutCast but with Icecast and edcast client you can stream live vorbis trough HTML5 <audio> tag. Just point it to http://your-url.com:port/stream.ogg :p

like image 30
Yahoo Avatar answered Oct 02 '22 16:10

Yahoo


well I've checked ogg_vorbis stations. I downloaded some playlist and opened it in notepad, and copy out the url of a stream. So if you want to test it just copy this to empty file and name it something.html.

<!DOCTYPE html>
    <html>
    <head>
    <title>audio testing live stream!</title>
    </head>
    <body>
    <audio controls="controls" autoplay="autoplay" src="http://oggvorbis.tb-stream.net:80/technobase.ogg">
    </audio>
    </body>
</html>

that's it!

BB

like image 40
ninja Avatar answered Oct 02 '22 14:10

ninja


<!DOCTYPE html>
<audio controls src="http://baldyradio.com:8010/;"></audio>

This works in the release version of IE9, Sad that the same can not be said for FireFox 4!

like image 25
TechMonkey Avatar answered Oct 02 '22 14:10

TechMonkey


<audio controls src="http://example.com:8000/mountpath;"></audio>
like image 20
000 Avatar answered Oct 02 '22 15:10

000


reading the HTML 5 audio specification (http://www.w3schools.com/html5/html5_audio.asp) W3C outlines which formats (MP3 or OGG) are supported by which browsers

What i would do is have an icecast server (not ShoutCast) streaming a MP3 and an OGG stream

using javascript detect the browser type - http://www.javascripter.net/faq/browsern.htm

if (the browser does not support HTML5){ print a message - USE a New Browser }

if (the browser supports HTML5 and OGG streaming (use list from W3c)){ use the OGG stream from the icecast server in the SRC tag }

if (the browser supports HTML5 MP3 streaming (use list from W3C)){ use the MP3 stream from the icecast server in the SRC tag }

i think this would cover all the major browsers and would solve most peoples problems you will probably find in the future this will be redundant as more browsers support

like image 35
Andrei Avatar answered Oct 02 '22 14:10

Andrei


The above posts give the correct answer, allthough they don't mention the use of the slash. Make sure /; is there after the stream URL and port.

<audio src="http://shoutcast.internet-radio.org.uk:10272/;" />
like image 20
Kurt Van den Branden Avatar answered Oct 02 '22 15:10

Kurt Van den Branden


Well, Firefox and Opera do not support non-Free codecs such as mp3 (as with the Opera 10.5 alpha, FF 3.5 and later supports only PCM wav and Ogg Vorbis for audio). I believe Chrome and Safari do support MP3, however.

The next problem is that your URL appears to point to a webpage describing the stream, not to a stream.

Finally, as far as I know, no one has implemented a playlist parser for the audio element (the spec only mentions audio files, not playlists), which is a problem here, as even when you click "listen" you get a playlist rather than a raw stream.

like image 25
Kelly Clowers Avatar answered Oct 02 '22 14:10

Kelly Clowers


Yes you can play ShoutCast2 I use it like this in this way

<audio preload="none" autoplay="autoplay" controls="controls">
    <source src="http://178.32.62.172:9079/stream" type="audio/mpeg">
    Your browser does not support this player, please update the version
</audio>
like image 30
Hector Lara Avatar answered Oct 02 '22 14:10

Hector Lara