android media player shows audio but no video

前端 未结 3 767
一整个雨季
一整个雨季 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:01

    I had this problem and solved it by setting the type using this depreciated method.

    holder.setType(SurfaceHolder.SURFACE_TYPE_PUSH_BUFFERS);
    

    Worth a try, and if it works you could investigate why the type isn't automatically set as it is supposed to be.

提交回复
热议问题