how can i force for download mp4 file from url?
url = "https://clips-media-assets2.twitch.tv/AT-cm%7C31747331920-offset-17408-720.mp4"
i tried this code but its not working
header('Content-Type: video/mp4');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"".$file_name."\"");
echo file_get_contents($links);
You have to be careful if you use external link in you server. Use this code only for your server file.
<?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');