在Ubuntu下,使用javascript进行mp3播放
var audio = new Audio('file.mp3');
audio.play();
如果遇到
HTTP “Content-Type” of “audio/mpeg” is not supported. Load of media resource … failed.
错误,原因很可能是因为没有安装mp3解码器。
要解决这个错误,请输入以下命令:
$ sudo apt-get install -y ubuntu-restricted-extras
或
$ sudo apt-get install gstreamer1.0-plugins-bad
$ sudo apt-get install gstreamer1.0-plugins-ugly
完成后重启浏览器即可。

在Ubuntu系统中使用Firefox播放mp3时,如果出现'HTTP "Content-Type" of "audio/mpeg" is not supported'错误,是因为缺少解码器。解决此问题,只需通过命令行安装相应的解码器,然后重启浏览器即可正常播放mp3音频。
1万+

被折叠的 条评论
为什么被折叠?



