Can any body help how to stream a live url in android mediaplayer...i tried such a long but same result....plz help if any body did before

link|improve this question

56% accept rate
"i tried such a long but same result" - what result? – user370305 Nov 18 '11 at 5:23
please show what you have tried so far. – Lalit Poptani Nov 18 '11 at 5:23
Hi Lalit u can see what i tried on this below heading on stack overflow... Android http live Streaming URL using mediaplayer – user1051599 Nov 18 '11 at 5:55
Getting errors like Mediaplayer error(1,-1002), start state is 0 and error(-38, 0) why.? – user1051599 Nov 18 '11 at 5:56
If you're using http live streaming (HLS/pantos-http-live-streaming-07), it's only supported in Android 3.0 and higher. You can see google's release notes here: developer.android.com/sdk/android-3.0-highlights.html You need to provide more information in your question... – vipw Nov 18 '11 at 9:03
feedback

1 Answer

You may use this:

    MediaPlayer mediaPlayer=new MediaPlayer();
    mediaPlayer = MediaPlayer.create(this, Uri.parse("YOUR URL HERE"));
    mediaPlayer.start();
link|improve this answer
@ NAVdroid i used this also but its showing not sending buffering status because duration is unknown...plz give me suggestion if u have done before.... – user1051599 Nov 18 '11 at 7:47
1  
Are you trying online radio streaming I guess!!! – NAVdroid Nov 18 '11 at 7:57
2  
then try dis here – NAVdroid Nov 18 '11 at 8:04
s navdroid...... – user1051599 Nov 18 '11 at 9:41
is that one playing...... – user1051599 Nov 18 '11 at 9:41
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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