我在远程服务器上上传了示例文件,三种类型的文件:图像、视频、音频。
我通过cURL
我的本地页面访问它们并强制下载。
一个问题是图像<img src="?image" />
可以工作,但嵌入的音频和视频文件却不行。我使用嵌入代码进行测试,这样的嵌入框架就足够了。
这是我的 php 文件test.php
<?php
function download($url)
{
set_time_limit(0);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$r = curl_exec($ch);
curl_close($ch);
header('Expires: 0'); // no cache
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
header('Cache-Control: private', false);
header('Content-Type: application/force-download');
header('Content-Disposition: attachment; filename="' . basename($url) . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . strlen($r)); // provide file size
header('Connection: close');
echo $r;
exit;
}
if (isset($_GET['image']))
{
$file = 'https://googledrive.com/host/0B_3oJnpnNoF9UjlkVUwtWE5CY0U/city.jpg';
download($file);
}
if (isset($_GET['music']))
{
$file = 'https://googledrive.com/host/0B_3oJnpnNoF9UjlkVUwtWE5CY0U/horse.mp3';
download($file);
}
if (isset($_GET['video']))
{
$file = 'https://googledrive.com/host/0B_3oJnpnNoF9UjlkVUwtWE5CY0U/mov_bbb.mp4';
download($file);
}
?>
<img src="http://localhost/test.php?image" />
<br />
<audio controls height="100" width="100">
<source src="http://localhost/test.php?music" type="audio/mpeg">
<embed height="50" width="100" src="http://localhost/test.php?music">
</audio>
<br />
<video width="320" height="240" controls>
<source src="http://localhost/test.php?video" type="video/mp4">
<object data="http://localhost/test.php?video" width="320" height="240">
</object>
</video>
如果我转到链接http://localhost/test.php?music
或http://localhost/test.php?video
下载开始,那么我的意思是这些是工作文件(链接没有关闭)。
我的问题是我无法以这种方式流式传输音频和视频文件,我需要对此代码进行一些修改。
谢谢。