如果音频文件作为八位字节流发送,如何在 HTML 中嵌入音频文件?
我正在尝试编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过overrideMimeType?
have you tried overrideMimeType?