PHP流到html5视频,页面导航无效

时间:2016-04-19 08:41:17

标签: php html5 video stream

我有从PHP到HTML5视频标签的流媒体.mp4视频的麻烦。 Video Streams很好,也可以向前和向后移动。但是:如果我点击我的菜单中的任何链接,该网站将不会更改。加载图标显示在选项卡上,开发工具显示有请求。但请求"等待"直到视频流结束。因此,如果视频结束,新页面将加载,但不会加载。

有关于此的任何想法吗?

PS:添加session_write_close();在流式传输文件之前解决问题。但对我来说,这看起来有点太过分了......

<video style="width:100%;" preload="metadata" controls="">
 <source src="/uploads/getfile?image_path=5%2FOKzAAFlSub-VLsnFWvkPWXBLluwOV-Q5DIuqJkPpDubahlAosK.mp4&amp;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();

2 个答案:

答案 0 :(得分:2)

  

添加session_write_close();在流式传输文件之前解决问题。但对我来说,这看起来有点太过分了......

对此没有多少“hacky”。​​

保持会话打开的长时间运行的脚本将阻止对稍后开始的所有其他脚本的相同会话的访问(与菜单链接点击一样。)

为避免这种情况,请在完成后立即关闭长时间运行的脚本中的会话,以便释放对会话数据文件的锁定。

非常“hacky”但是,首先是通过脚本流式传输视频数据。 那个是你应该首先避免做的事情,如果可能的话。在内存使用和脚本运行时方面,这不是一个好主意。

答案 1 :(得分:0)

最好使用已存在的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();