我正在向 javascript 播放器提供音频,例如(对于 Safari):
new Audio('give_audio.php?n='+name+'&t=mp3');
我正在寻找为 Safari 设置正确的标题,以便他检索音频持续时间。我发现这个话题对我帮助很大: audio.duration return Infinity on Safari when mp3 is serving from PHP
我的 PHP 脚本 'give_audio.php' 是:
if (isset($_GET['n']) && isset($_GET['t'])) {
$n = htmlspecialchars($_GET['n']);
$t = htmlspecialchars($_GET['t']);
$filename = $n.'.'.$t;
$path = 'Audio/'.$filename;
$fsize = filesize($path);
$shortlen = $fsize - 1;
$fp = fopen($path, 'r');
$etag = md5(serialize(fstat($fp)));
fclose($fp);
if ($t == 'mp3') $t = 'mpeg';
header("Pragma: public");
header("Expires: 0");
header('Cache-Control: no-cache, no-store');
header('Content-Transfer-Encoding: binary');
header('Content-Disposition: inline; filename="'.$filename.'"');
header('Content-Length: '.$fsize);
header('Content-Type: audio/'.$t);
header('Accept-Ranges: bytes');
header('Connection: Keep-Alive');
header('Content-Range: bytes 0-'.$shortlen.'/'.$fsize);
header('X-Pad: avoid browser bug');
header('Etag: '.$etag);
readfile($path);
} else {
header('HTTP/1.0 404 Not Found');
echo 'Error';
}
现在 Safari 找到了音频持续时间,但它是假的!它太长了,所以最后有几秒钟没有数据,这会阻止玩家......
此外,这不适用于 Opera。
你有解决这个问题的想法吗?