PHP mp4流到浏览器



我正在尝试使用php流式传输一个简单的mp4视频到video.js播放器。

我在这里发现了一个简单的函数使用和修改了一点,但视频播放器发出一个错误,即使我直接去到链接,我得到一个错误,媒体是不正常的或插件未能加载(当使用safari上的直接链接时)

下面是代码片段:
$token = $_GET['token'];
if ($token == 1 )
{
    $path = '../videos/vid1.mp4';
    $size=filesize($path);
    $fm=@fopen($path,'rb');
    if(!$fm) {
        // You can also redirect here
        header ("HTTP/1.0 404 Not Found");
        die();
    }
    $begin=0;
    $end=$size;
    if(isset($_SERVER['HTTP_RANGE'])) {
        if(preg_match('/bytes=h*(d+)-(d*)[D.*]?/i', $_SERVER['HTTP_RANGE'], $matches)) {
            $begin=intval($matches[0]);
            if(!empty($matches[1])) {
                $end=intval($matches[1]);
            }
        }
    }
    if($begin>0||$end<$size)
        header('HTTP/1.0 206 Partial Content');
    else
        header('HTTP/1.0 200 OK');
    header("Content-Type: video/mp4");
    header('Accept-Ranges: bytes');
    header('Content-Length:'.($end-$begin));
    header("Content-Disposition: inline;");
    header("Content-Range: bytes $begin-$end/$size");
    header("Content-Transfer-Encoding: binaryn");
    header('Connection: close');
    $cur=$begin;
    fseek($fm,$begin,0);
    while(!feof($fm)&&$cur<$end&&(connection_status()==0))
    { print fread($fm,min(1024*16,$end-$cur));
        $cur+=1024*16;
        usleep(1000);
    }
    die();
}

忽略token,因为它仅用于测试目的。我的代码是否有问题,是否有其他实用的方法将mp4或其他媒体类型流式传输到浏览器?

使用这个也发现这里解决…很抱歉,但是谁将被重定向到这里可以有选项。

工作代码片段:

$file = '../videos/vid1.mp4';
$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);
    flush();
}
fclose($fp);
exit();

有一个简单的解决方案:

if (access_token_valid()) {
$file = $_GET['file'];
    if (file_exists($file)) {
    header('Location: 
        '.$file);
    } else {
    header('Location: 
        404.mp4');
    }
} else {
header('Location: 
    403.mp4');
}

相关内容

  • 没有找到相关文章

最新更新