Yes, they do.. you can use a native HTML5 player for that stream.
In my page I have $isApple = preg_match('|AppleWebKit/.*Mobile/|i',$_SERVER['HTTP_USER_AGENT'])?true:false;
to detect the browser type.
If $isApple is true, then I generate an HTML5 page instead of a XHTML 1.0-Strict page and use <?php if(!$isApple) { // NOT Apple browser.. use Flash control
?>
<div id='flashcontent'>You need to upgrade your Flash Player</div>
<script type='text/javascript' src='http://icons.wunderground.com/scripts/swfobject.js'></script>
<script type='text/javascript'>
var so = new SWFObject('http://www.wunderground.com/radio/radio-player.swf', 'radio-player', '210', '100', '8', '#FFFFFF', true);
so.setAttribute('xiRedirectUrl', 'http://www.wunderground.com//wxradio/index.html');
so.addParam('allowScriptAccess','always');
so.addParam('movie','http://www.wunderground.com/radio/radio-player.swf');
so.addParam('quality','high'); so.addParam('bgcolor','#ffffff');
so.addVariable('XMLMode', 'HTTP');
so.addVariable('strStreamURL', 'http://www.wunderground.com/wxradio/requestxml.html%3Faction%3Dgetsinglefromallstations%26stationid%3DKCASARATOGA%7C115%7C519');
so.write('flashcontent');</script>
<?php } else { // is Apple.. use HTML5 native player ?>
NOAA Radio KEC49: 162.55<br/>
Monterey/San Francisco Bay<br/>
<br/>
<br/>
<audio controls autoplay>
<source src="http://audioplayer.wunderground.com/KCASARATOGA/Saratoga.mp3.m3u" type="audio/mpeg">
Your device does not support HTML5 audio.
</audio>
<br/>
<br/>
<br/>
<?php } // end HTML5 native player ?>
to use either the flash control or HTML5 <audio> as need be.
Best regards,
Ken