我正在为一位音乐家创建一个网站,该网站将在全球范围内进行检查,因此音频元素的再现兼容性至关重要。
因此,我考虑了以下内容以涵盖所有可能的浏览器:
<audio controls="controls" data-music data-bind-target="{{ fileName }}">
<source src="assets/audio/mp3/fileName.mp3" type="audio/mpeg" />
<source src="assets/audio/ogg/fileName.ogg" type="audio/ogg" />
<source src="assets/audio/webm/fileName.webm" type="audio/webm" />
<source src="assets/audio/wav/fileName.wav" type="audio/wave" />
</audio>
我看过只插入mp3
和ogg
的网站,所以我想知道我是否把它放得太远了。我已经检查了MDN site regarding the formats但不知道该怎么做,因此我希望得到其他开发者的意见。
创建这些格式不会有任何问题,因此不是问题。我想知道: