好吧,我放弃...发生了一件非常奇怪的事情,经过数天的混乱,我不得不寻求帮助。我有一个PHP脚本,可从文档根目录外部提供MP4文件。该脚本非常有用,除了一个非常重要的细节(至少对我而言)外:它不会给我选择投射内容的选项。在同一台服务器上,当我访问位于文档根目录中的MP4文件时,将加载页面,并且单击Chrome视频播放器右下角的三个点时,可以选择下载或投射到我的Chromecast。使用我的脚本,我只能选择下载,而我真的需要CAST!我已经做了很多调整,以至于从任何一个方法输出的标头几乎都是相同的。这是我的代码...
<?php
$file=$_GET['file'];
//validate
if($file=="." || $file==".."){$file="";}
$mediaRoot="../../../hostMedia";
$file=$mediaRoot . DIRECTORY_SEPARATOR . $file;
$file=str_replace('\\',"/",$file);
$filesize = filesize($file);
$offset = 0;
$length = $filesize;
// find the requested range
preg_match('/bytes=(\d+)-(\d+)?/', $_SERVER['HTTP_RANGE'], $matches);
$offset = intval($matches[1]);
$length = (($matches[2]) ? intval($matches[2]) : $filesize) - $offset;
// output the right headers for partial content
header('HTTP/1.1 206 Partial Content');
header('Content-Range: bytes ' . $offset . '-' . ($offset + $length-1) . '/' . $filesize);
header('Content-Type: video/mp4');
header('Content-Length: ' . $filesize);
header('Accept-Ranges: bytes');
header('Cache-Control: max-age=0');
// open file for reading
$file = fopen($file, 'r');
// seek to the requested offset, this is 0 if it's not a partial content request
fseek($file, $offset);
// populate $data with all except the last byte of the file
$numBytes=($filesize-1);
$dataLen=0;
while($dataLen<$numBytes){
$lenGrab=($numBytes-$dataLen);
if($lenGrab>(1024*2700)){$lenGrab=(1024*2700);}
$data=fread($file, $lenGrab);
print($data);
$dataLen+=strlen($data);
}
// close file
fclose($file);
?>
解决这个问题的人一千个“谢谢”!
更新
好吧,在接受@Brian Heward的建议后,我花了无数小时来确保标题绝对正确!!!我非常确定它会起作用,但是,遗憾的是,它仍然无法让我选择投射。这是我更新的PHP ...
<?php
session_start();
$accessCode=$_SESSION['accessCode'];
$file=$_GET['file'];
//handle injection
if($file=="." || $file==".."){$file="";}
if($accessCode=="blahblahblah8"){
$mediaRoot="../../../hostMedia";
$file=$mediaRoot . DIRECTORY_SEPARATOR . $file;
$file=str_replace('\\',"/",$file);
$filesize = filesize($file);
$offset = 0;
$length = $filesize;
$lastMod=filemtime($file);
if ( isset($_SERVER['HTTP_RANGE']) ) {
// if the HTTP_RANGE header is set we're dealing with partial content
$partialContent = true;
// find the requested range
preg_match('/bytes=(\d+)-(\d+)?/', $_SERVER['HTTP_RANGE'], $matches);
$offset = intval($matches[1]);
$length = (($matches[2]) ? intval($matches[2]) : $filesize) - $offset;
} else {
$partialContent = false;
}
if ( $partialContent ) {
// output the right headers for partial content
header('HTTP/1.1 206 Partial Content');
header('Content-Range: bytes ' . $offset . '-' . ($offset + $length-1) . '/' . $filesize);
}else{
header('HTTP/1.1 200 OK');
}
// output the regular HTTP headers
header('Content-Type: video/mp4');
header('Content-Length: ' . $length);
header('Accept-Ranges: bytes');
header('ETag: "3410d79f-576de84c004aa"');
header('Last-Modified: '.gmdate('D, d M Y H:i:s \G\M\T', $lastMod));
// don't forget to send the data too
$file = fopen($file, 'r');
// seek to the requested offset, this is 0 if it's not a partial content request
fseek($file, $offset);
//populate $data with all except the last byte of the file
$numBytes=($length);
$dataLen=0;
while($dataLen<$numBytes){
$lenGrab=($numBytes-$dataLen);
if($lenGrab>(1024*2700)){$lenGrab=(1024*2700);}
$data=fread($file, $lenGrab);
print($data);
$dataLen+=strlen($data);
}
fclose($file);
}else{
echo "You are not authorized to view this media.";
}
?>
如果有人可以使这个东西正常工作,那么您就是一个超级英雄!
最终更新(目前...)
在经历了许多小时的挫折之后,我不得不放弃了这种方法,尝试了一些不同的尝试。幸运的是,通常有不止一种方法可以完成某件事,而我发现了另一种方法。我将doc根目录下的.mp4文件托管在使用HTTP Basic Auth保护的文件夹中。与我试图达到的目标非常相似,它正在为我工作。感谢您的建议和指导!
答案 0 :(得分:3)
您的标题是“所有但都相同”,这就是问题所在。使它们相同:P
使用浏览器上的开发人员工具(F12)并检查每个请求发出的网络标头。最可能的原因是我在类似项目中使用的以下几行,但您似乎不见了:
header('Content-Description: File Transfer');
header('Content-Disposition: inline; filename=' . basename($file));
或者它可能想要
header('Content-Disposition: attachment; filename=' . basename($file));