Chrome 控制台报错记录的一些记录
调试器里面提示如下
Resource interpreted as Document but transferred with MIME type audio/mpeg:
解决方法
使用type 解释 “音频"使用以MIME类型 “audio/mpeg”传输
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
音频格式及浏览器支持
目前,
元素支持三种音频格式文件: MP3, Wav, 和 Ogg:
浏览器
MP3
Wav
Ogg
Internet Explorer 9+
YES
NO
NO
Chrome 6+
YES
YES
YES
Firefox 3.6+
YES
YES
YES
Safari 5+
YES
YES
NO
Opera 10+
YES
YES
YES
音频格式的MIME类型
Format
MIME-type
MP3
audio/mpeg
Ogg
audio/ogg
Wav
audio/wav
相关文章