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);