How to play Live Streaming video in Android

前端 未结 2 402
孤街浪徒
孤街浪徒 2021-01-14 05:31

In my project I have a requirement to play live streaming video. I have seen many comments that \"live streaming is supported only from 3.0\" so that I have to use emulator

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-14 05:56

     String SrcPath="http://akamedia2.lsops.net/live/smil:cnbc_en.smil/playlist.m3u8";
            myVideoView = new VideoView(this);
            myVideoView.setVideoURI(Uri.parse(SrcPath));
            setContentView(myVideoView);
            myVideoView.setMediaController(new MediaController(this));
            myVideoView.requestFocus();
    

    Remove this line.

    myVideoView.requestFocus();
    

提交回复
热议问题