Icecast AAC Radio Player

HTML5 support AAC Streams using HTML5 Audio Tag, you can simply use below code for different devices or computer.

Note: Icecast AAC Radio stream must be 44100hz & 128kb/s stereo to work perfectly in players.

Androids
<audio id=”radioaac” src=”http://radio.server.com:port/AACStream” controls=”true” style=”width:200px; height:50px;”></audio>

iOS (iPhone/iPod/iPad)
<audio id=”radioaac” src=”http://radio.server.com:port/AACStream.m3u” controls=”true” style=”width:200px; height:50px;”></audio>

Other
<audio id=”radioaac” src=”http://radio.server.com:port/AACStream” controls=”true” style=”width:200px; height:50px;”></audio>

All Together
<audio id=”radioforge” class=”radioforge” style=”width:200px; height:50px;” title=”radioforge” preload=”none”>
<source src=”http://radio.server.com:port/AACStream” />
<source src=”http://radio.server.com:port/AACStream.m3u” />
<source src=”http://radio.server.com:port/MP3Stream” />
</audio>