Play m3u8 video in android

前端 未结 6 564
被撕碎了的回忆
被撕碎了的回忆 2021-01-30 18:00

I want to live streaming the video and it is in m3u8 format. So i tried the below code

public class StreamingPlayer extends Activity implements
OnBufferingUpdate         


        
6条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-30 18:49

    I have no problem to play stream:

    videoView1.setVideoPath("http://***.net/livedemo/_definst_/stream3.stream/playlist.m3u8?wowzasessionid=773395207");
    videoView1.start();
    

    About the message:

    The video cannot be played

    Maybe you need to add permissions to your Manifest file:

    
    
    

提交回复
热议问题