HTML5 音频 支持哪些音频格式
我希望使用 HTML5 在我的网络应用程序中播放简短的声音。 我将其保存为 3 种格式。 wav、mp3 和 ogg
我创建了 3 个标签以不同的格式播放。
<audio controls autobuffer>
<source src="random_d5c589b1.wav" type="audio/x-wav">
</audio>
<audio controls autobuffer>
<source src="random_d5c589b1.ogg" type="application/ogg">
</audio>
<audio controls autobuffer>
<source src="random_d5c589b1.mp3" type="audio/mpeg">
</audio>
IE9显示可以播放mp3,播放
FF5显示可以播放wav、ogg。我没有听到。
Chrome 12 能够播放所有 3 种格式,但我听不到任何声音。
当我使用不同的音频文件时,我可以在 FF 和 Chrome 中听到它们。但我听不到我需要的声音。
这是示例:- http://kvartira-n.com/test-site/sound2。 html
感谢 Juhana。问题是我只有 2 声道扬声器,并且在 Windows 中选择了 5+1。我不清楚为什么,但有些音频 2 通道文件可以听到,而其他则不能。
谢谢大家问题现在已经解决了。
I have short sound that I wish to play in my webapp using HTML5.
I save it in 3 formats. wav, mp3 and ogg
I created 3 tags to play in different formats.
<audio controls autobuffer>
<source src="random_d5c589b1.wav" type="audio/x-wav">
</audio>
<audio controls autobuffer>
<source src="random_d5c589b1.ogg" type="application/ogg">
</audio>
<audio controls autobuffer>
<source src="random_d5c589b1.mp3" type="audio/mpeg">
</audio>
IE9 shows that it can play mp3 and it plays
FF5 shows that it can play wav, ogg. I do not hear it.
Chrome 12 is able to play all 3 formats but I do not hear anything.
When I use different audio files I can hear them in FF and Chrome. But I can't hear those I need.
Here is example:- http://kvartira-n.com/test-site/sound2.html
Thanks to Juhana. The problem was that I had only 2 channel speakers and 5+1 was selected in Windows. It is not clear to me why but some audio 2 channel files were hearable and other wasn't.
Thanks everyone problem is resolved now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它是特定于浏览器的。
例如,.ogg 文件在 chrome 和 firefox 中工作,但在 safari 中不起作用。
提供备用音频文件是个好主意。
这是 MDN 网络文档的示例。
It's browser-specific.
e.g. The .ogg file works in chrome and firefox but doesn't work in safari.
It's a good idea to provide alternate audio files.
Here is the example by MDN web docs.