IE不播放来自php脚本的mp3

IE not playback mp3 from php script

本文关键字:脚本 mp3 php 播放 IE      更新时间:2023-09-26

我只在IE中播放音频时遇到问题。控制台不显示错误。我从 php 脚本获取文件并设置以下标头:

    $mime_type = "audio/mpeg";
    header("Content-Type: {$mime_type}");
    header('Content-Length: '.filesize($file));
    readfile($file);

在 js 中:

    audio.src = source;
    audio.load();
    audio.addEventListener('canplay', function(){
        audio.play();
    }, true); 

在 php 脚本source路径中。

Add this meta tag to the head:

and also
Try

audio/vnd.wave

because some browser do attempt content fixing wrong MIME types.