在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是否有类似的功能?或者我应该使用相同的功能吗?
答案 0 :(得分:3)
您可以使用相同的功能。
Web Audio API不支持音频元素支持的其他格式。
目前这些是:
来源:
https://en.wikipedia.org/wiki/HTML5_Audio
为了使其正确,因为此表中存在错误:IE 执行支持Wav和Ogg。 请参阅:https://www.microsoft.com/web/post/adding-audio-with-the-new-html5-audio-tag