Ipad MPMovieplayerController video loads but automatically pauses when played

后端 未结 5 1190
礼貌的吻别
礼貌的吻别 2020-12-31 14:38

I am trying to get the MPMovieplayerController to work. I load a video everything goes wel i even see the first frame but then it automatically pauses, if i press play it pa

5条回答
  •  醉梦人生
    2020-12-31 15:28

    I had an issue on the device where the video would show up but not play. I could scrub. The fix for me was that I was using the avaudiorecorder, and I was releasing it before playing the video without stopping the audio recorder. My solution was to add the stop call to the recorder before starting the video:

    [recorder stop];
    [recorder release];
    

提交回复
热议问题