我正在玩我的宠物项目,并尝试使用 PHP 进行 mp3“流式传输”,我总是得到返回的音频持续时间Infinity
。我尝试在很多地方搜索,不幸的是,我似乎无法找到根本问题。
请注意,我不得不将该项目搁置一段时间,并且之前一切正常。当我重新开始该项目的工作时,我做了一些 UI 重构并发现了这个“错误”。谁能发现我的代码有问题?
上下文:这是在控制器(ZF2)动作中,其中$media
是POPO模型。
$file = $basePath . $media->getFileName();
$fileSize = filesize($file);
$fileHandle = fopen($file, 'r');
$etag = md5(serialize(fstat($fileHandle)));
$cacheExpires = new \DateTime();
// TODO : implement ranges...
if ( isset($_SERVER['HTTP_RANGE']) ) {
// find the requested range
// this might be too simplistic, apparently the client can request
// multiple ranges, which can become pretty complex, so ignore it for now
preg_match('/bytes=(\d+)-(\d+)?/', $_SERVER['HTTP_RANGE'], $matches);
$rangeFrom = intval($matches[1]);
$rangeTo = intval($matches[2]);
$statusCode = 206;
} else {
$rangeFrom = 0;
$rangeTo = $fileSize;
$statusCode = 200;
}
fseek($fileHandle, $rangeFrom);
set_time_limit(0); // try to disable time limit
$response = new Stream();
$response->setStream($fileHandle);
$response->setStatusCode($statusCode);
$response->setStreamName(basename($file));
$headers = new Headers();
$headers->addHeaders(array(
'Pragma' => 'public',
'Expires' => $cacheExpires->format('Y/m/d H:i:s'),
'Cache-Control' => 'no-cache',
'Accept-Ranges' => 'bytes',
'Content-Description' => 'File Transfer',
'Content-Transfer-Encoding' => 'binary',
'Content-Disposition' => 'attachment; filename="' . basename($file) .'"',
'Content-Type' => 'audio/mpeg, audio/x-mpeg, audio/x-mpeg-3, audio/mpeg3', // $media->getFileType(),
'Content-Range' => "bytes {$rangeFrom}-{$rangeTo}/{$fileSize}",
'Content-Length' => $fileSize,
'Etag' => $etag,
'X-Pad' => 'avoid browser bug',
));
$response->setHeaders($headers);
return $response;
我尝试过使用几乎每个 HEADER 字段(甚至删除范围),但浏览器总是得到isFinite(audio.duration) === false
. 其他一切似乎都可以正常工作,包括播放,完美无缺。