SoundManager w HTML5 音频导致 206 部分内容错误?
我使用的是 SoundManager (SM),首选 HTML 5 音频以及标准 SM flash 后备。
由于某种原因,我看到请求被取消,导致控制台中出现红色错误,尽管声音播放得很好。
知道为什么吗?这个标准是 CDN 还是 HTML5 音频?有人以前见过这个吗?谢谢
Request URL:https://hall.com/misc/sounds/message_sent.mp3
Request Method:GET
Status Code: 206 Partial Content (from cache)
I'm using SoundManager (SM) with HTML 5 audio preferred along with the standard SM flash fallback.
For some reason I'm seeing requests being cancelled, resulting in the error red in console though sounds play just fine.
Any idea why? Is this standard with CDNs or maybe HTML5 audio? Anyone seen this before? Thanks
Request URL:https://hall.com/misc/sounds/message_sent.mp3
Request Method:GET
Status Code: 206 Partial Content (from cache)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是托管 MP3 的服务器的问题,而不是 SoundManager2 的问题。服务器似乎不支持部分内容(即字节范围请求)。您可以阅读有关部分内容支持所需内容的更多信息,或者您可以设置
流
将声音对象上的属性设置为false
或使用 SoundManager 的defaultOptions
。这样做将建议浏览器请求不Accept-Ranges: bytes
HTTP标头的音频数据。It's an issue with the server hosting the MP3s, not with SoundManager2. The server doesn't appear to support Partial Content (i.e. byte-range requests). You can read more about what is required for Partial Content support or you can set the
stream
property on your sound object tofalse
or with SoundManager'sdefaultOptions
. Doing this will suggest that the browser request the audio data without theAccept-Ranges: bytes
HTTP header.