Welcome Guest, Not a member yet? Register   Sign In
How force download mp4 file
#1

Hi
I have 10 video files with mp4 format
I download this files from my php script
My code is :
PHP Code:
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($filename).'?id='.time());
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' filesize($filename));
readfile($filename); 

But speed is low when user try to download
and when i use redirect(base_url().$filename); speed is good and user can watch video speedly

M goal from this way is user cannnot download video and have to watch it with my php script file

Thanks
Reply


Messages In This Thread
How force download mp4 file - by omid_student - 09-02-2019, 01:35 AM
RE: How force download mp4 file - by php_rocs - 09-02-2019, 08:09 AM
RE: How force download mp4 file - by omid_student - 09-02-2019, 09:54 AM
RE: How force download mp4 file - by InsiteFX - 09-02-2019, 09:00 AM
RE: How force download mp4 file - by InsiteFX - 09-02-2019, 11:58 AM
RE: How force download mp4 file - by omid_student - 09-02-2019, 12:06 PM
RE: How force download mp4 file - by InsiteFX - 09-02-2019, 04:30 PM
RE: How force download mp4 file - by omid_student - 09-03-2019, 01:39 AM
RE: How force download mp4 file - by InsiteFX - 09-03-2019, 02:45 AM
RE: How force download mp4 file - by omid_student - 09-03-2019, 03:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB