查找 mp4 的持续时间 - iPhone SDK

发布于 2024-10-01 02:21:17 字数 156 浏览 6 评论 0原文

如何找到 mp4 文件的持续时间(小时和分钟)。我尝试在 MPMoviePlayerViewController 中加载 URL 并使用持续时间属性,然后将 nstimeinterval 转换为字符串,但它总是结果为 0。有没有任何方法可以做到这一点?

谢谢,

凯文

How can I find the duration of a mp4 file to hours and minutes. I have tried loading the URL in a MPMoviePlayerViewController and use the duration property which I then convert the nstimeinterval to a string but it always results in 0. Is there any method to do this?

Thanks,

Kevin

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

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

发布评论

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

评论(1

百变从容 2024-10-08 02:21:17

在检查持续时间之前,您可能必须等待 MPMovieDurationAvailableNotification 被触发。来自 Apple 的 MPMoviePlayerController 类参考

此通知将在以下情况下发布:
电影对象的持续时间是
决定。该对象的
通知是
MPMoviePlayerController 对象本身。
没有 userInfo 字典。这
持续时间值反映在
电影播放器​​的持续时间属性
控制器。

You may have to wait for the MPMovieDurationAvailableNotification to be fired before you check the duration. From Apple's MPMoviePlayerController Class Reference,

This notification is posted when the
duration of a movie object is
determined. The object of the
notification is the
MPMoviePlayerController object itself.
There is no userInfo dictionary. The
duration value is reflected in the
duration property of the movie player
controller.

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