android media player shows audio but no video

前端 未结 3 769
一整个雨季
一整个雨季 2021-01-01 04:48

I am using media player to stream a video. It only plays the audio but not the video. Could anyone help? My code is below.

public class VideoViewApplication          


        
3条回答
  •  情歌与酒
    2021-01-01 05:21

    I had the same problem and it was due to the surface not being ready to play back video.

    You should try and call playVideo() from the surfaceCreated() handler.

    public void surfaceCreated(SurfaceHolder holder) {
            runOnUiThread(new Runnable(){
                public void run(){
                    playVideo();
                }
            });
    }
    

提交回复
热议问题