我如何强制从 url 下载视频?
how can i force for download a video from url?
如何强制从 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);
如果您在服务器中使用外部 link,则必须小心。仅将此代码用于您的服务器文件。
<?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');
如何强制从 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);
如果您在服务器中使用外部 link,则必须小心。仅将此代码用于您的服务器文件。
<?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');