播放声音文件不适用于除 IE 之外的所有浏览器

发布于 2024-08-18 14:40:30 字数 198 浏览 4 评论 0原文

我有这条线

<EMBED NAME=""mySound"" SRC=""DocID2858_voice-message.wav"" LOOP=FALSE AUTOSTART=True HIDDEN=TRUE MASTERSOUND>

它适用于 ie 但不适用于其他浏览器。 有什么办法可以做到这一点吗?

I have This line

<EMBED NAME=""mySound"" SRC=""DocID2858_voice-message.wav"" LOOP=FALSE AUTOSTART=True HIDDEN=TRUE MASTERSOUND>

It works for ie but doesn't work for rest of browser.
is there any way to make that.

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

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

发布评论

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

评论(2

小糖芽 2024-08-25 14:40:31

如果您使用 IE 8、Firefox 3.5 及更高版本、Safari 4、Google Chrome,那么您会知道这些浏览器支持 HTML 5。

对于 HTML 5,请使用 < /代码> 标签。更多信息请参见此处

If you're using IE 8, Firefox 3.5 and higher, Safari 4, Google Chrome, then you'll be aware that these browsers support HTML 5.

For HTML 5 use the <audio></audio> tag. More information can be found here.

桃扇骨 2024-08-25 14:40:31
SRC=""DocID2858_voice-message.wav""

你的报价加倍了。我很惊讶这在 IE 中仍然有效!

如果必须使用 标记,则语法为:

<embed id="mysound" src="DocID2858_voice-message.wav" type="audio/wav" loop="false" autostart="true" hidden="true">

type 属性对于防止 IE 中不必要的双重获取是必要的。 mastersound 是 Netscape 4 的废话,如今没有任何支持。 loopautostart 并未得到普遍支持。 autostart 是普遍讨厌的。

无论如何,我强烈建议不要使用 这些天。或者甚至是嵌入媒体播放器的最新 方式。嵌入式媒体播放器很脆弱。它们通常对用户怀有敌意或不可靠或根本不存在。如今,大多数作者使用 Flash 播放器来播放 MP3。 (可以播放 WAV,但效果不太好。)

明天,HTML5

SRC=""DocID2858_voice-message.wav""

You've doubled your quotes. I'm amazed if this still works in IE!

If you must use an <embed> tag, the syntax would be:

<embed id="mysound" src="DocID2858_voice-message.wav" type="audio/wav" loop="false" autostart="true" hidden="true">

The type attribute is necessary to prevent an unnecessary double-fetch in IE. mastersound was a Netscape 4 nonsense supported by nothing today. loop and autostart are not universally supported. autostart is universally hated.

Anyhow I'd strongly recommend against using <embed> these days. Or even the more up-to-date <object> way of embedding a media player. Embedded media players are fragile. They're often user-hostile or unreliable or just not present at all. Today, most authors use a Flash player to play back MP3 instead. (It's possible to play back WAV, but it's not very nice.)

Tomorrow, HTML5 <audio> elements will be used instead. It is possible to use <audio> with fallback to Flash today, but this will mean having more than one audio format on the server.

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