I have hard time getting an iphone app built on top of phonegap to stream online radio station. It should be possible but doing
try {
var myaudio = new Media('http://domain.com:8000/ices',function(e)
{alert(e);},function(e){alert(e);});
myaudio.play();
} catch (e) {
alert('no audio support!');
}
does not play the stream. No error either. The app just freezes and no error in the Xcode log console.
How should i approach this?