I am trying to play apple test stream video(.m3u8) in android

this is the link: http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8

But i am not able to play in android 3.2.

This is the code i have used to play the video

 void playvideo(String url) 
    {
         String  link=url;
         Log.e("url",link);



          MediaController mc = new MediaController(this); 
          mc.setMediaPlayer(videoview); 
          videoview.setMediaController(mc); 
    videoview.setVideoURI(Uri.parse("http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8")); 
          videoview.requestFocus(); 
          videoview.start();

     }

Please suggest me the way to play m3u8 file in different android versions

link|improve this question

62% accept rate
Please share your ideas if any body know the answer to play m3u8 with out 3rd party library – Abhi Jan 27 at 8:28
feedback

1 Answer

up vote 2 down vote accepted

Have you tried vitamio? It's an extension framework that does everything (and then some) that MediaPlayer does, including m3u8 streams.

link|improve this answer
Thank you for reply, Is there anyway to play with out using third party library? – Abhi Jan 27 at 7:12
Not reliably in my experience. – Chris Cashwell Jan 27 at 13:47
One more doubt please, Why some versions of 3.x not supporting Http live streaming, why should we go for another frame work? – Abhi Jan 27 at 13:50
@Abhi it's not that those versions don't support live streaming, just that the method is different. I suppose you could always use one of two different methods based on the return of Build.VERSION.SDK_INT, but would you really rather code twice than use a superior media framework? – Chris Cashwell Jan 27 at 13:57
no, but i am seeing for any other way with out using framework, AFAIK from 3.x HTTP LiveStreaming is supported in android, right? but when i give httplive:// instead of http:// playing in 2.3 version also why so? – Abhi Jan 27 at 14:01
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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