How could I play a shoutcast/icecast stream using HTML5?
2020 update Modern browsers don’t need any special treatment or server-side workarounds to play audio. Simply use an audio tag with a direct link to one or more stream sources (not a playlist): <audio> <source src=”http://relay.publicdomainradio.org/classical.mp3″ type=”audio/mpeg”> </audio> From MDN: The HTML <audio> element is used to embed sound content in documents. It may contain … Read more