我如何强制从URL下载mp4文件?
url =“ https://clips-media-assets2.twitch.tv/AT-cm%7C31747331920-offset-17408-720.mp4”
我尝试了此代码,但无法正常工作
header('Content-Type: video/mp4');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"".$file_name."\"");
echo file_get_contents($links);
答案 0 :(得分:0)
如果在服务器中使用外部链接,则必须小心。将此代码仅用于您的服务器文件。
<?php
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: Binary');
header('Content-disposition: attachment; filename="video.mp4"');
readfile('/video/offset-17408-720.mp4');