dpntq48842 2017-09-14 00:56
浏览 1183
已采纳

使用PHP CURL下载MP4文件

I am trying to download a video from one of my servers to another of my servers. I was using CURL because copy() did not download the audio from the video. However, CURL downloaded corrupted files (?) and do not. This is how I'm downloading the MP4 file right now:

$source = "https://link.com/video.mp4";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $source);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSLVERSION,3);
$data = curl_exec ($ch);
$error = curl_error($ch);
curl_close ($ch);
$destination = "video/video.mp4";
$file = fopen($destination, "wb");
fwrite($file, $data);
fclose($file);

Is there anything special for MP4 files to download properly?

array(26) { ["url"]=> string(60) "https://link.com/video.mp4" ["content_type"]=> NULL ["http_code"]=> int(0) ["header_size"]=> int(0) ["request_size"]=> int(0) ["filetime"]=> int(-1) ["ssl_verify_result"]=> int(1) ["redirect_count"]=> int(0) ["total_time"]=> float(0.135745) ["namelookup_time"]=> float(8.4E-5) ["connect_time"]=> float(0.056009) ["pretransfer_time"]=> float(0) ["size_upload"]=> float(0) ["size_download"]=> float(0) ["speed_download"]=> float(0) ["speed_upload"]=> float(0) ["download_content_length"]=> float(-1) ["upload_content_length"]=> float(-1) ["starttransfer_time"]=> float(0) ["redirect_time"]=> float(0) ["redirect_url"]=> string(0) "" ["primary_ip"]=> string(13) "AN-IP :D" ["certinfo"]=> array(0) { } ["primary_port"]=> int(443) ["local_ip"]=> string(11) "192.168.0.9" ["local_port"]=> int(57478) }

0

1 条回答 默认 最新

  • dongmu3187 2017-09-14 01:10
    关注

    You must open the file in binary mode to ensure file is saved to disk correctly.

    $file = fopen($destination, "wb");
    

    Also use fwrite instead of fputs

    fwrite($file, $data);
    

    Check that video.mp4 downloads from the browser correctly. Maybe it is redirecting? If so the add this option.

    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    

    If is still does not work then dump out this info and post it.

    var_dump(curl_getinfo($ch));
        
    本回答被题主选为最佳回答 , 对您是否有帮助呢? 本回答被专家选为最佳回答 , 对您是否有帮助呢? 本回答被题主和专家选为最佳回答 , 对您是否有帮助呢?
    按下Enter换行,Ctrl+Enter发表内容
查看更多回答(0条)

报告相同问题?

悬赏问题

  • ¥15 matlab有svec这个函数吗? 无法调用VideoWriter_fourcc VB6.0无法加载网页验证码图片到picturebox中,求解。 C#和GDAL对栅格处理 我现在有一些关于提升机故障的专有文本数据,量也不多,我在label studio上进行了关系和实体的标注,完成了知识图谱的构造,那么我使用生成式模型的话,我能做哪些工作来写我的论文? 电脑连不上无线网络如下诊断反馈应该如何操作 telegram api 使用forward_messages方法转发消息时,目标群组里面会出现此消息来源,如何隐藏? 关于#tensorflow#的问题:有没有什么方法可以让机器自己学会像素风格的图片