网络音频 - 检查支持的格式

时间:2013-07-01 02:59:01

标签: javascript web-audio

在HTML5音频中,我可以this to find out if MP3 is supported

var a = document.createElement('audio');
return !!(a.canPlayType && a.canPlayType('audio/mpeg;').replace(/no/, ''));

Web Audio API是否有类似的功能?或者我应该使用相同的功能吗?

1 个答案:

答案 0 :(得分:3)

您可以使用相同的功能。

Web Audio API不支持音频元素支持的其他格式。

目前这些是:

enter image description here

来源:
https://en.wikipedia.org/wiki/HTML5_Audio

为了使其正确,因为此表中存在错误:IE 执行支持Wav和Ogg。 请参阅:https://www.microsoft.com/web/post/adding-audio-with-the-new-html5-audio-tag