“NSInvalidArgumentException”,原因:“-[AVPlayerItem 持续时间]:发送了无法识别的选择器

发布于 2025-01-05 20:35:10 字数 380 浏览 0 评论 0原文

我正在尝试使用 AVPlayer 播放 MediaItem,然后尝试获取当前项目的持续时间,如下所示(持续时间是 CMTime 类型的对象):

duration = [[player currentItem] duration];

我在 iPad 中没有遇到任何问题,但在 iPod Touch 中,出现以下错误。我还没有在 iPhone 上尝试过这个。

由于未捕获的异常而终止应用程序 'NSInvalidArgumentException',原因:'-[AVPlayerItem 持续时间]: 无法识别的选择器发送到实例 0x186100'

任何指向修复程序的指针将不胜感激。

I am trying to play a MediaItem using AVPlayer and later trying to get the duration of the current item like this (duration is an object of type CMTime):

duration = [[player currentItem] duration];

I get no issues in iPad but in iPod Touch, I get the following error. I haven't tried this in iPhone yet.

Terminating app due to uncaught exception
'NSInvalidArgumentException', reason: '-[AVPlayerItem duration]:
unrecognized selector sent to instance 0x186100'

Any pointers to the fix will be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软糯酥胸 2025-01-12 20:35:10

您很可能在装有 iOS 的 iPod 上进行测试。 4.3.

根据 AVPlayerItem 文档,duration 仅在 iOS 4.3 或更高版本中可用。

You're most likely testing this on an iPod with iOS < 4.3.

According to the AVPlayerItem documentation, duration is only available in iOS 4.3 or later.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文