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?

link|improve this question

64% accept rate
feedback

2 Answers

It looks like the Media api in iOS doesn't support streaming.

https://github.com/phonegap/phonegap-iphone/issues/55

If you are willing to work with a code that is still in development (not sure I have all the kinks out of it yet) then I have written a plugin using Matt Gallagher's AudioStreamer classes that so far seems to work great on iOS:

https://github.com/devgeeks/phonegap-plugins/tree/AudioStreamer/iPhone/AudioStream

If you do try it out and find any bugs, make sure to let me know :)

link|improve this answer
MPMoviePlayer seems to do the job without a plug-in... is there something i am missing? – vasion Aug 22 '11 at 9:30
The original questioner asked about PhoneGap. MPMoviePlayer requires native iOS development (Objective-C). – Devgeeks Aug 22 '11 at 13:49
sorry, i did not notice it is a phonegap plugin... – vasion Aug 23 '11 at 12:33
@Devgeeks is the bug solved yet ??? – Abhishek Jan 28 at 8:02
@Abhishek - Nope. The issue is now here (since they moved to the apache incubator infrastructure): issues.apache.org/jira/browse/CB-57 – Devgeeks Jan 30 at 2:56
show 6 more comments
feedback

I've done this by using HTML5 ... Simply create an AUDIO instance and use SRC to call URL STREAM. Audio player will be visible but you can hide it easily!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.