我在从PHP到HTML5视频标签的Streaming.mp4视频方面遇到了问题。视频流很好,也可以向前和向后移动。但是:如果我点击菜单中的任何链接,网站都不会改变。加载图标出现在选项卡上,开发工具显示有一个请求。但是请求"等待",直到视频流结束。因此,如果视频结束,将加载新页面,但之前不会加载。
对此有什么想法吗?
PS:添加session_write_close();在流式传输文件之前解决问题。但它对我来说有点太古怪了…
<video style="width:100%;" preload="metadata" controls="">
<source src="/uploads/getfile?image_path=5%2FOKzAAFlSub-VLsnFWvkPWXBLluwOV-Q5DIuqJkPpDubahlAosK.mp4&type=20" type="video/mp4">
Your browser does not support the video tag.
</video>
PHP代码:
$file = Yii::getAlias('@app') . '/../files/uploads/' .$image_path;
$fp = @fopen($file, 'rb');
$size = filesize($file); // File size
$length = $size; // Content length
$start = 0; // Start byte
$end = $size - 1; // End byte
header('Content-type: video/mp4');
header("Accept-Ranges: 0-$length");
header("Accept-Ranges: bytes");
if (isset($_SERVER['HTTP_RANGE'])) {
$c_start = $start;
$c_end = $end;
list(, $range) = explode('=', $_SERVER['HTTP_RANGE'], 2);
if (strpos($range, ',') !== false) {
header('HTTP/1.1 416 Requested Range Not Satisfiable');
header("Content-Range: bytes $start-$end/$size");
exit;
}
if ($range == '-') {
$c_start = $size - substr($range, 1);
}else{
$range = explode('-', $range);
$c_start = $range[0];
$c_end = (isset($range[1]) && is_numeric($range[1])) ? $range[1] : $size;
}
$c_end = ($c_end > $end) ? $end : $c_end;
if ($c_start > $c_end || $c_start > $size - 1 || $c_end >= $size) {
header('HTTP/1.1 416 Requested Range Not Satisfiable');
header("Content-Range: bytes $start-$end/$size");
exit;
}
$start = $c_start;
$end = $c_end;
$length = $end - $start + 1;
fseek($fp, $start);
header('HTTP/1.1 206 Partial Content');
}
header("Content-Range: bytes $start-$end/$size");
header("Content-Length: ".$length);
$buffer = 1024 * 8;
while(!feof($fp) && ($p = ftell($fp)) <= $end) {
if ($p + $buffer > $end) {
$buffer = $end - $p + 1;
}
set_time_limit(0);
echo fread($fp, $buffer);
ob_flush();
}
fclose($fp);
exit();
添加session_write_close();在流式传输文件之前解决问题。但它对我来说有点太古怪了…
这并没有太多的"生气"。
保持会话打开的长时间运行的脚本将阻止稍后启动的所有其他脚本访问同一会话(就像单击菜单链接一样)
为了避免这种情况,您可以在完成长时间运行的脚本后立即关闭该会话,这样就可以释放对会话数据文件的锁定。
不过,非常"黑客"的是,首先通过脚本流式传输视频数据如果可能的话,那是你首先应该避免做的事情。就内存使用和脚本运行时而言,这不是一个好主意。
最好使用已经存在的PHP包来支持部分下载。这是梨中的一个:
http://pear.php.net/manual/en/package.http.http-download.php
它支持几种类型的下载(部分、流等)
$dl = &new HTTP_Download();
$dl->setData($data);
$dl->setLastModified($unix_timestamp);
$dl->setContentType('application/x-gzip');
$dl->setContentDisposition(HTTP_DOWNLOAD_ATTACHMENT, 'latest.tgz');
$dl->send();