gpt4 book ai didi

php - 使用php输出一个mp4视频

转载 作者:IT王子 更新时间:2023-10-29 01:19:14 24 4
gpt4 key购买 nike

好的,基本上我有一个项目,要求视频对用户隐藏,同时仍然能够看到它们(通过使用 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();
?>

最佳答案

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

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

关于php - 使用php输出一个mp4视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5924061/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com