如果音频文件作为八位字节流发送,如何在 HTML 中嵌入音频文件?

发布于 2024-08-04 15:27:55 字数 441 浏览 4 评论 0原文

我正在尝试编写一个 Greasemonkey 脚本,它将页面上的所有“播放”链接转换为嵌入音频(使用 标签)。

当我使用从 GMail 附件获得的链接时,它就像一个魅力。

当我使用来自另一个站点 (Digium Switchvox) 的链接时,HTTP 响应标头将 ContentType 设置为“application/octet-stream”而不是“audio/x-wav”(如 GMail 的链接)。这让 Firefox 感到困惑,它认为我没有安装正确的插件。如果我将 标记中的 type 属性设置为“audio/x-wav”,Firefox 将使用 Quicktime 加载该文件。然而,Quicktime 会感到困惑,并且不会播放该文件。

有谁知道解决这个问题的聪明方法?

I'm trying to write a Greasemonkey script that will convert all "Play" links on a page to embedded audio (using the <embed> tag).

When I use a link that I get from a GMail attachment, it works like a charm.

When I use a link from another site (Digium Switchvox), the HTTP response header has ContentType set to "application/octet-stream" instead of "audio/x-wav" (like GMail's link). This confuses Firefox, which decides that I don't have the right plugin installed. If I set the type attribute in the <embed> tag to "audio/x-wav", Firefox uses Quicktime to load the file. Quicktime gets confused, however, and won't play the file.

Does anyone know of a clever way to solve this problem?

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

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

发布评论

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

评论(1

叹沉浮 2024-08-11 15:27:55

您是否尝试过overrideMimeType

覆盖MimeType
字符串(兼容性:0.6.8+)可选。
请求中指定的 MIME 类型(例如“text/html; charset=ISO-8859-1”)。

have you tried overrideMimeType?

overrideMimeType
String (Compatibility: 0.6.8+) Optional.
A MIME type to specify with the request (E.G. "text/html; charset=ISO-8859-1").

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