QTMovie 是否处理 URL 重定向?
我只是想知道 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的意思是抛出异常,还是返回错误?我不希望它抛出异常,但您应该检查该方法是否失败,如果失败,则检查错误对象。
尝试在本地通知中心观察
QTMovieStatusStringPostedNotification
。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.
Try observing for
QTMovieStatusStringPostedNotification
on the local notification center.