is there a way to play streaming youtube video from my activity?

前端 未结 3 1950
孤独总比滥情好
孤独总比滥情好 2020-12-22 11:43

Somewhere in my Android app I would like to play a youtube video, in my activity, in a small view. I\'m trying to do this using VideoView, but no luck so fa

3条回答
  •  清歌不尽
    2020-12-22 12:07

    you can simply use youtube rtsp link in videoview as:

        String myurl="rtsp://v4.cache4.c.youtube.com/CjYLENy73wIaLQk_ezfHQ9mvqRMYDSANFEIJbXYtZ29vZ2xlSARSBXdhdGNoYN-__7O28NSPUAw=/0/0/0/video.3gp";     
    
            Uri video = Uri.parse(myurl);
            mVideoView = new VideoView(this);           
            mVideoView.setVideoURI(video);
            myMediaController = new MediaController(this);
    

    it works simply for me.

提交回复
热议问题