QTMovie 是否处理 URL 重定向?

发布于 2024-09-16 22:44:14 字数 387 浏览 6 评论 0原文

我只是想知道 QTMovie 类是否确实处理 URL 重定向,因为我正在用它流式传输音频文件,并且流 URL 可以包含重定向。有时电影不会开始播放,但不会抛出错误(我总是在主线程上操作,我知道这个类不是线程安全的)。

有什么想法为什么 QTMovie 可能无法开始播放吗?

问候, Erik

更新:


QTMovie 在出错时返回以下 -userInfo 字典。 403 是指 HTTP 403 吗?

{
 QTMovieStatusCodeNotificationParameter = 403,
 QTMovieStatusFlagsNotificationParameter = 26411036
}

I was just wondering if the QTMovie class does handle URL redirects, because I'm streaming audio files with it and the stream URLs can contain redirects. Sometimes the movie won't start playing but doesn't throw an error (i always operate on the main thread, i know this class is not thread safe).

Any ideas why QTMovie might not start playing?

Regards,
Erik

Update:


QTMovie returns following -userInfo dict on error. Does the 403 refer to HTTP 403?

{
 QTMovieStatusCodeNotificationParameter = 403,
 QTMovieStatusFlagsNotificationParameter = 26411036
}

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

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

发布评论

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

评论(1

因为看清所以看轻 2024-09-23 22:44:14

有时电影不会开始播放,但不会抛出错误......

你的意思是抛出异常,还是返回错误?我不希望它抛出异常,但您应该检查该方法是否失败,如果失败,则检查错误对象。

有什么想法为什么 QTMovie 可能无法开始播放吗?

尝试在本地通知中心观察 QTMovieStatusStringPostedNotification

Sometimes the movie won't start playing but doesn't throw an error ….

Do you mean throw an exception, or return an error? I wouldn't expect it to throw an exception, but you should check whether the method failed and, if it did, inspect the error object.

Any ideas why QTMovie might not start playing?

Try observing for QTMovieStatusStringPostedNotification on the local notification center.

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