HLS(Http Live Streaming)形式のストリーミング動画を、Android のVideoView で再生する
HLS(Http Live Streaming)はApple の提唱するストリーミング用プロトコルの一種です。
https://developer.apple.com/resources/http-streaming/
iOS端末向けに開発されている模様ですが、Android でも3.0 以上なら再生できる模様。
http://developer.android.com/guide/appendix/media-formats.html
HLSを再生するアプリ側のコードとしては、VideoView のsetVideoPath でHLSプレイリストのURLを渡してやるだけでOKです。 例えば以下のような感じ。
VideoView videoView = (VideoView)findViewById(R.id.videoview);
videoView.setVideoPath("http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8");
videoView.start();