当前位置: 代码迷 >> 综合 >> cocos2d-x ios 11.3 播放Mp4 ccexp.VideoPlayer黑屏或者跳过
  详细解决方案

cocos2d-x ios 11.3 播放Mp4 ccexp.VideoPlayer黑屏或者跳过

热度:80   发布时间:2023-11-18 01:17:12.0

发现cocos2d-x 引擎在ios 11.3上播放视频会黑屏并且直接跳过

两种解决办法,升级引擎到3.16版本之后

或者修改Oc的代码

在UIVideoPlayer-ios.mm下

-(void) videoFinished:(NSNotification *)notification
{if(_videoPlayer != nullptr){//fix : ios 11.3 sends wrong notificaiton here, we need to ignore itif ([self.moviePlayer playbackState] == MPMoviePlaybackStatePlaying){return;}if([self.moviePlayer playbackState] != MPMoviePlaybackStateStopped){_videoPlayer->onPlayEvent((int)VideoPlayer::EventType::COMPLETED);}}
}
就好啦!