SoundManager w HTML5 音频导致 206 部分内容错误?

发布于 2024-12-28 13:00:46 字数 375 浏览 0 评论 0原文

我使用的是 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)

enter image description here

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

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

发布评论

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

评论(1

—━☆沉默づ 2025-01-04 13:00:47

这是托管 MP3 的服务器的问题,而不是 SoundManager2 的问题。服务器似乎不支持部分内容(即字节范围请求)。您可以阅读有关部分内容支持所需内容的更多信息,或者您可以设置将声音对象上的属性设置为 false 或使用 SoundManager 的 defaultOptions。这样做将建议浏览器请求Accept-Ranges: bytes HTTP标头的音频数据。

soundManager.defaultOptions = {
  stream: false
}

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 to false or with SoundManager's defaultOptions. Doing this will suggest that the browser request the audio data without the Accept-Ranges: bytes HTTP header.

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