Html 如何使用 html5 <audio> 标签播放 aac 文件?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/15568884/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
how can I use html5 <audio> tag to play aac file?
提问by user2198903
<audio controls>
<source src="xxx.aac" type="audio/aac">
</audio>
I can get it to work in safari but doesn't work in chrome and firefox. any solution?
我可以让它在 safari 中工作,但在 chrome 和 firefox 中不起作用。任何解决方案?
回答by Daniel Imms
Only Safari and IE support .aac. Here is what each browser supports:
只有 Safari 和 IE 支持 .aac。以下是每个浏览器支持的内容:
- Internet Explorer 9.0+: .mp3, .aac
- Chrome: .ogg, .mp3, .wav, .aac*
- Firefox: .ogg, .wav
- Safari: .mp3, .aac, .wav
- Opera: .ogg, .wav
- Internet Explorer 9.0+:.mp3、.aac
- 铬:.ogg、.mp3、.wav、.aac*
- 火狐:.ogg、.wav
- Safari:.mp3、.aac、.wav
- 歌剧:.ogg、.wav
* Chrome seems to support .aacbut it isn't included in the list of officially supported file extensions.
* Chrome 似乎支持 .aac,但它并未包含在官方支持的文件扩展名列表中。
I suggest using both .ogg and .mp3 or .ogg and .aac to cover all bases.
我建议同时使用 .ogg 和 .mp3 或 .ogg 和 .aac 来覆盖所有基础。
References
参考
回答by u4201669
<audio controls="controls">
<source src="xxx.aac" type="audio/mp4" />
</audio>
<audio controls="controls">
<source src="xxx.aac" type="audio/mp4" />
</audio>
+---------------------+-----+-----+-----+-----+
| Browser | Ogg | MP3 | AAC | Wav |
+---------------------+-----+-----+-----+-----+
| Internet Explorer 9 | No | Yes | Yes | No |
| Firefox 5 | Yes | No | No | Yes |
| Chrome 12 | Yes | Yes | Yes | Yes |
| Safari 5 | No | Yes | Yes | Yes |
| Opera 11.5 | Yes | No | No | Yes |
+---------------------+-----+-----+-----+-----+
回答by Greg
The AAC audio format seems to be widely supported by HTML5 in most browsers as long as it is in the MP4 container. For example, an apple .m4a file is an MP4 containing only an audio file, usually an AAC file.
AAC 音频格式似乎在大多数浏览器中被 HTML5 广泛支持,只要它在 MP4 容器中。例如,苹果的 .m4a 文件是只包含音频文件的 MP4,通常是 AAC 文件。
The .aac file itself would not be widely supported.
.aac 文件本身不会得到广泛支持。
Thus:
因此:
<audio controls="controls">
<source src="xxx.m4a" type="audio/mpeg" />
</audio>
Source: https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats
来源:https: //developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats
See the browser compatibility chart - line "AAC in MP4" and footnotes.
请参阅浏览器兼容性图表 - “MP4 中的 AAC”行和脚注。