YouTube is the most popular videos sharing platform where we watched videos online. However, we often need to get those YouTube videos for offline uses. If you’re a PHP developer then definitely you’re looking for a PHP script to download YouTube videos on your local server. So here in this post, we will explain how easily you can create your own PHP script to download your favorite YouTube video.
Also, read:
- Build Invoice System with PHP & MySQL
- Build Live Chat System with Ajax, PHP & MySQL
- Build Comment System with Ajax, PHP & MySQL
At the end of this post, you will also see live demo of YouTube video download script and also download live demo source code.
As we know that YouTube didn’t provide any ways to get the raw video but still we can download it. As the player will always issue a HTTP request to http://youtube.com/get_video_id?video_id=THE_VIDEO_ID to get information about a specific video. The result of the request contains a URL-encoded string that has the video’s location. So, we will need to get that part first of video.
$vid = $_GET['vid']; // Youtube video ID $vformat = $_GET['vformat']; // The MIME type of the video. e.g. video/mp4, video/webm, etc. parse_str(file_get_contents("http://youtube.com/get_video_info?video_id=".$vid),$info); $streams = $info['url_encoded_fmt_stream_map'];
Now we will get all the streams. As the stream is also different sets of URL-encoded data separated by a comma. In order to retrieve all the streams, we need to turn it into an array by using explode(‘,’,$streams).
$streams = explode(',',$streams);
Finally, we will need to loop through all the streams and get its data.
foreach($streams as $stream){ parse_str($stream,$data); //Now decode the stream if(stripos($data['type'],$vformat) !== false){ $video = fopen($data['url'].'&signature='.$data['sig'],'r'); //the video $file = fopen('video.'.str_replace($vformat,'video/',''),'w'); stream_copy_to_stream($video,$file); fclose($video); fclose($file); echo 'Youtube Video Download finished! Now check downloaded file.'; break; } }
The complete PHP script to download YouTube videos:
<?php $vid = $_GET['vid']; //the youtube video ID $vformat = $_GET['vformat']; //the MIME type of the video. e.g. video/mp4, video/webm, etc. parse_str(file_get_contents("http://youtube.com/get_video_info?video_id=".$vid),$info); //decode the data $streams = $info['url_encoded_fmt_stream_map']; //the video's location info $streams = explode(',',$streams); foreach($streams as $stream){ parse_str($stream,$data); //decode the stream if(stripos($data['type'],$vformat) !== false){ //We've found the right stream with the correct format $video = fopen($data['url'].'&signature='.$data['sig'],'r'); //the video $file = fopen('video.'.str_replace($vformat,'video/',''),'w'); stream_copy_to_stream($video,$file); //copy it to the file fclose($video); fclose($file); echo 'Youtube Video Download finished! Now check the file.'; break; } } ?>
Now you can call it like this after you’ve put it to the server in a PHP file:
http://localhost/PHP SCRIPT NAME.php?vid=THE YOUTUBE VIDEO ID&vformat=THE MIME TYPE OF THE VIDEO
You may also like:
- Star Rating System with Ajax, PHP and MySQL
- Create Event Calendar with jQuery, PHP and MySQL
- Build Your Own CAPTCHA Script with PHP
- Convert Unix Timestamp To Readable Date Time in PHP
- Inventory Management System with Ajax, PHP & MySQL
- Create Live Editable Table with jQuery, PHP and MySQL
- Live Add Edit Delete datatables Records with Ajax, PHP and MySQL
- Stripe Payment Gateway Integration in PHP
- Export Data to Excel with PHP and MySQL
- Star Rating System with Ajax, PHP and MySQL
- Create Dynamic Bootstrap Tabs with PHP & MySQL
- How To Create Simple REST API in PHP
Here we have developed a complete YouTube video downloader script with the help of above. You can see this script in action from below live demo link.
Hi there, nice script but it only download a very low video quality, what about 720p?
Thanks
Thanks, I have updated script. now try it.
Only low videos download
nice script bro…
but can you plz tell how to download complete playlist
Now We have updated script with live demo and script source to download and try it. I will solve your problem.
how i get your script brother
You can download script through download link next to live demo link. Thanks!
i get an error that the client does not have permission to get URL
what does it mean
Thanks for query, I think the error you facing due to some other issue not related YouTube video download.
How to download full video in playlist or channels.. it script php
Thanks for comment, The script only download single videos, I will update script in future to download full list or channels.
hello, nice tutorial! but may i know how can i download the download code? like the live demo? thank you.
You can download from given download link.
This code doesn’t work with copyrighted videos.
Yes its not allowed copyright videos to download
nice
The code works fine but the only problem am getting is it just downloads the video to the server not client machine
its working fine in locally But in Live Website that code doesn’t work (It is restricted from playback on certain sites.)
thank you very much, nice
Thank you for nice share.
where is the download option..
Download link is next to live demo and its locked, you just need to social share to unlock download link.
thank bro you doing very great job script is 1000000000% working
please make a php live chat and live video chat script with online show option thanks for giving a php youtube download script
Thanks bro!, I will try to publish tutorial on these topics.
Blown away with your script. Simple, short, effective, no OAuth, no python.
Thank you very much.
Hello together,
since today theres a new cipher … ill try to get it … if now maybe someone of you could help – would be nice!
greetings
The functionality working fine in demo. Send more details, so that I can help you. Thanks!
Thanks for the script Working perfect & fast.
good article but i need total php script..
You can download full script.
Thanks for script. Working fine
It is not working after entering the video id