使用php输出mp4视频

时间:2011-05-07 21:18:49

标签: php iphone html5 mp4

好吧基本上我有一个项目要求视频对用户隐藏,同时仍能看到它们(通过使用php)。这是我到目前为止所得到的:

video.php文件包含:

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'path/to/movie.mp4');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_HEADER, 0);
$out = curl_exec($ch);
curl_close($ch);


header('Content-type: video/mp4');
header('Content-type: video/mpeg');
header('Content-disposition: inline');
header("Content-Transfer-Encoding:­ binary");
header("Content-Length: ".filesize($out));
echo $out;
exit();
?>

并且应该显示的html文件正在使用html5。现在这里的事情......当我直接嵌入这个(不是)时它起作用。但它在我的iPhone上不起作用,并且在标签中不起作用...如果我使用直接文件而不是php包装器,一切正常,在我的iPhone上......

所以我想我的问题是这样的:什么是正确的header()信息来完美复制可以通过iPhone和HMTL5流式传输的mp4?

解决方案源自:http://mobiforge.com/developing/story/content-delivery-mobile-devices

video.php文件:

<?php
$file = 'path/to/videofile.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");
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();
?>

4 个答案:

答案 0 :(得分:14)

Iphone使用称为字节范围的内容来处理音频和视频请求。请参阅此链接以获取解决方案。它在附录A中。

http://mobiforge.com/developing/story/content-delivery-mobile-devices

答案 1 :(得分:6)

这是一个剪切的代码,可以执行您想要的操作(from this question)。 PHP解决方案似乎更优雅,它增加了一个更有效的解决方案,可以使用Web服务器来提供内容。

<?php

$path = 'file.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: binary\n");
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();

更多效果

请注意,这不是最有效的方法,因为整个文件需要通过PHP,因此您只需要尝试它的运行方式。

假设您要这样做的原因是限制访问,以后需要更高的效率,您可以使用Web服务器的标志。

带有X-Sendfile模块的Apache或轻量级(nginx info here

$path = 'file.mp4';
header("X-Sendfile: $path");
die();

这有点高级,你应该只在需要的时候使用它,但是当你开始使用相当简单但性能平庸的东西时,知道你有升级选项是很放松的。

答案 2 :(得分:1)

这段代码对我来说非常方便,但我遇到了麻烦,因为我正在使用会话变量,而PHP队列访问会话。如果正在加载视频,则所有AJAX请求都是不可能的,等等。因此,请确保在开始输出之前调用session_write_close()

答案 3 :(得分:1)

是的,它很容易做到。无需手动设置这些标头。让服务器自动完成。

下载工作脚本 -

ob_start();

if( isset($_SERVER['HTTP_RANGE']) )

$opts['http']['header']="Range: ".$_SERVER['HTTP_RANGE'];

$opts['http']['method']= "HEAD";

$conh=stream_context_create($opts);

$opts['http']['method']= "GET";

$cong= stream_context_create($opts);

$out[]= file_get_contents($real_file_location_path_or_url,false,$conh);

$out[]= $http_response_header;

ob_end_clean();

array_map("header",$http_response_header);

readfile($real_file_location_path_or_url,false,$cong);