如题,我的文件是*.aac格式的,试用<audio>或者<video>标签播放时,只有chrome可以,其他浏览器都不支持aac格式的音频文件,试过更改media-type,不行,求各位大大有什么好方法吗,第三方组件亦可
<audio src="./myfile.aac" controls="controls">
Your browser does not support the audio element.
</audio>
<audio width="320" height="240" controls>
//这里试过很多type
<source src="./myfile.aac" type="audio/mp4">
</audio>
上述都不行
The mimetype of aac: audio/aac is not only required in the html code, the server also returns when myfile.aac is requested.
You loaded it from the local path: "./myfile.aac", so there is probably no mimetype.
Hello! Is the problem that IE does not support audio aac format solved?