使用PHP流式传输HTML5大(> 2GB)视频

时间:2014-04-02 09:22:58

标签: php html5 video video-streaming ftell

好的,基本上我正在开展一个项目,我需要从隐藏的来源流式传输MP4视频。

正如本论坛中的大多数人都有问题,我使用的解决方案来自:http://mobiforge.com/developing/story/content-delivery-mobile-devices

function get_video($file){
    $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");
    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);
}

当您尝试处理大于2GB的视频文件(在x86计算机中)时,会出现此问题。

我发现的第一个问题是使用php filesize()函数,当文件大于2GB时,它会给出负值。对于这个问题,我使用的工作正常工作:

 function showsize($file) {
    if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') {
      if (class_exists("COM")) {
        $fsobj = new COM('Scripting.FileSystemObject');
        $f = $fsobj->GetFile(realpath($file));
        $file = $f->Size;
      } else {
        $file = trim(exec("for %F in (\"" . $file . "\") do @echo %~zF"));
      }
    } elseif (PHP_OS == 'Darwin') {
      $file = trim(shell_exec("stat -f %z " . escapeshellarg($file)));
    } elseif ((PHP_OS == 'Linux') || (PHP_OS == 'FreeBSD') || (PHP_OS == 'Unix') || (PHP_OS == 'SunOS')) {
      $file = trim(shell_exec("stat -c%s " . escapeshellarg($file)));
    } else {
      $file = filesize($file);
    }
    return($file)
 }

第二个是一些参数像整数一样被初始化,在某些时候,它们都失败了......我通过使用浮点数来解决这个问题。

第三个是php ftell()函数(它在循环中被调用),它也返回一个整数...所以我遇到的问题与filesize()功能。由于当您进入循环时ftell()将返回的值与参数$start的值相同,我决定使用新参数(让我们调用它$mm ),它将以与参数$start相同的值进入循环,然后我只需在每个循环中添加$buffer的值,所以我不需要使用ftell()函数。

看起来像这样(澄清$start是浮点数):

$mm = $start;
while(!feof($fp) && $p <= $end) {

    if ($p + $buffer > $end) {
        $buffer = $end - $p + 1;
    }
    set_time_limit(0);
    echo fread($fp, $buffer);
    $mm = $mm + $buffer;
    $p = $mm;
    flush();
}

$$mmftell()在所有循环中具有相同的值,但由于某种原因,使用此更改即使使用&lt; 2GB文件也无法正常工作。因为我认为可能在某些时候它们可能有不同的值,我在下一个条件中放置了一个断点:

if ($mm != $p){
  $dummy = 1; 
}

在:

$mm = $start;
while(!feof($fp) && ($p = ftell($fp)) <= $end) {
    if ($mm != $p){
      $dummy = 1; 
    }
    if ($p + $buffer > $end) {
        $buffer = $end - $p + 1;
    }
    set_time_limit(0);
    echo fread($fp, $buffer);
    $mm = $mm + $buffer;
    flush();
}

它永远不会停止......所以我有点迷失了,你知道在循环循环中会出现什么问题吗?你知道其他任何可以避免ftell()功能的工作吗?

0 个答案:

没有答案