This question already has answers here:
HTML5 audio what audio formats are supported

(2个答案)



video and audio formats supported by all browsers

(2个答案)



What is the current file support for <audio>?

(2个答案)



How to play GSM files in HTML5

(1个答案)



GSM encoded WAV files in browser

(1个答案)


3年前关闭。




我正在尝试播放扩展名为(.gsm)的音频文件,尝试使用<audio>object标签以及js。
<script>
var myAudio = new Audio();        // create the audio object
myAudio.src = "test.gsm"; // assign the audio file to its src
myAudio.play();                   // play the music
</script>

但是没有结果是好的。那么如何在网页上不断播放.gsm扩展名呢?

最佳答案

没有GSM编解码器,它将永远无法工作。您将需要获取一个包含GSM 6.10 http://www.free-codecs.com/ace_mega_codecs_pack_download.htm的巨型编解码器包

HTML 5音频仅支持:
MP3音频/ mpeg
Ogg音频/ ogg
WAV音频/ WAV

关于javascript - GSM扩展程序无法在Web浏览器上播放,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43890385/

10-13 01:10