gpt4 book ai didi

ios - MPMoviePlayerController 模拟器崩溃

转载 作者:技术小花猫 更新时间:2023-10-29 10:11:36 25 4
gpt4 key购买 nike

当我尝试播放任何视频时,我的 MPMoviePlayerController 崩溃了。

这只发生在模拟器上,在设备上工作正常。

错误如下:

2012-10-25 16:46:24.033 TheFasterChef[8529:14303] [MPAVController] Autoplay: Disabling autoplay for pause
2012-10-25 16:46:24.035 TheFasterChef[8529:14303] [MPAVController] Autoplay: Disabling autoplay
2012-10-25 16:46:24.172 TheFasterChef[8529:14303] [MPAVController] Autoplay: Skipping autoplay, disabled (for current item: 1, on player: 0)
2012-10-25 16:46:24.190 TheFasterChef[8529:14303] [MPAVController] Autoplay: Enabling autoplay
2012-10-25 16:46:24.227 TheFasterChef[8529:14303] [MPAVController] Autoplay: Likely to keep up or full buffer: 0
2012-10-25 16:46:24.227 TheFasterChef[8529:14303] [MPAVController] Autoplay: Skipping autoplay, not enough buffered to keep up.
2012-10-25 16:46:24.232 TheFasterChef[8529:14303] [MPAVController] Autoplay: Enabling autoplay
2012-10-25 16:46:24.238 TheFasterChef[8529:14303] [MPCloudAssetDownloadController] Prioritization requested for media item ID: 0

我的代码是调用 MPMoviePlayerController 的标准方法:

在 .h 文件中:

@property (retain) MPMoviePlayerController *videoPlayer;

在 .m 文件中:

NSBundle *appBundle = [NSBundle mainBundle];
//NSString *contentURLString = [appBundle pathForResource:videoIdentifier ofType:@"mp4"];
NSString *contentURLString = [appBundle pathForResource:@"test" ofType:@".mp4"];
NSURL *contentURL = [NSURL fileURLWithPath:contentURLString];

self.videoPlayer = [[MPMoviePlayerController alloc] initWithContentURL:contentURL];
[self.videoPlayer prepareToPlay];
[self.videoPlayer.view setFrame: self.view.bounds];
[self.view addSubview:self.videoPlayer.view];
[self.videoPlayer prepareToPlay];
[self.videoPlayer play];

我在不同的 View Controller 中尝试过这段代码,但结果相同。

我在一个新项目中尝试了这段代码,它工作正常。

还有什么可能导致此错误?

答案here没有帮我解决。

最佳答案

解决方案:从断点选项卡中删除“所有异常”。
这个答案来自 Till 上面的评论。我有这个问题,我几乎错过了答案,因为它是一条评论。 Till 的回答对我有帮助,所以我希望这对像我这样的人有帮助。

exception

关于ios - MPMoviePlayerController 模拟器崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13072580/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com