masih / youtubedownloader
Youtube video downloader
Installs: 22 034
Dependents: 2
Suggesters: 0
Security: 0
Stars: 113
Watchers: 13
Forks: 62
Open Issues: 9
Requires
- php: >=5.5.0
- dariuszp/cli-progress-bar: ~1.0.2
- debach/zend-mp3: ~1.8.1
- dflydev/apache-mime-types: 1.0.*
- guzzlehttp/guzzle: ~6.0
- nategood/commando: ~0.2.8
- patchwork/utf8: ~1.3.1
Requires (Dev)
- janmarek/mockista: 1.1.*
- satooshi/php-coveralls: v2.0.0
README
Youtube video downloader
CLI
If you are not a developer and just need this tool to download videos, only read this part. Next parts are for developers who want to use this package in their projects. We assume that you already installed PHP and Composer. To install the CLI, open terminal and write this command:
composer global require Masih/YoutubeDownloader
After installation you'll have a new youtube
command. Just write youtube --help
to get more information.
Installation
Youtube Downloader is PSR-0 compliant and can be installed using composer. Simply add masih/youtubedownloader
to your composer.json file.
{ "require": { "masih/youtubedownloader": "~2.9.0" } }
and run composer update
command
Needs PHP 5.5 or newer. Tested with PHP 5.5, 5.6, 7.0, 7.1, hhvm and nightly
By default videos will download to videos
folder, if you want to change it,
you should use setPath
method.
<?php // ... $youtube->setPath('/path/to/folder'); // without trailing slash
When you install it as a dependency, there need to be a cache
directory beside vendor
and it should be writable (e.g. chmod 777
).
Usage
Video or Playlist info
To get video or playlist information, you should instantiate YoutubeDownloader
with video or playlist url or id.
for example for http://youtube.com/watch?v=gmFn62dr0D8
, video id is gmFn62dr0D8
.
or for https://www.youtube.com/playlist?list=PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ
, playlist id is PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ
.
<?php include 'vendor/autoload.php'; use Masih\YoutubeDownloader\YoutubeDownloader; $youtube = new YoutubeDownloader('gmFn62dr0D8'); $result = $youtube->getInfo(); header('Content-type: application/json'); print json_encode($result);
the getInfo()
method will call getVideoInfo()
or getPlaylistInfo()
according to url or id. there is a response_type
field in result of each one, indicating type of response that can be "playlist"
or "video"
.
getVideoInfo()
method will return an object containing video title, images, url, captions and itag
of all formats (full and adaptive), ...
getPlaylistInfo()
method will return an object containing title, description, author, videos, views, likes, dislikes, ...
Both getInfo(true)
and getPlaylistInfo(true)
can get an optional boolean parameter to get result of getVideoInfo()
for each video.
Video urls can be in these formats (Vevo videos are also supported, but cannot be downloaded in all countries):
gmFn62dr0D8
(Video Id)http://www.youtube.com/watch?v=gmFn62dr0D8
http://www.youtube.com/embed/gmFn62dr0D8
http://www.youtube.com/v/gmFn62dr0D8
http://youtu.be/gmFn62dr0D8
PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ
(Playlist Id)https://www.youtube.com/watch?v=7gY_sq9uOmw&list=PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ
https://www.youtube.com/playlist?list=PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ
https://www.youtube.com/embed/videoseries?list=PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ
Video formats are in two category; Full & adaptive in Full formats, videos and sounds are muxed and are in one file. but in Adaptive formats, videos and sounds are in separated urls.
Each format has it's own itag
. it's just an identifier.
You can get list of known itags
and their descriptions by calling getItags()
static method, or description of a single itag by calling getItagInfo($itag)
with the itag number.
You can call setDefaultItag($itag)
method with an itag number to download further videos in that format.
Download video(s)
the download()
method gets itag
of a format and downloads it.
if no itag
is passed, it will download highest quality of Full format.
For playlists, it will download all videos one by one.
<?php set_time_limit(0); // Downloading a video may take a lot time include 'vendor/autoload.php'; use Masih\YoutubeDownloader\YoutubeDownloader; $youtube = new YoutubeDownloader('gmFn62dr0D8'); $youtube->download();
Second parameter of download
method is a boolean named $resume
. When it is true
, it will continue downloading videos that are partially downloaded last time.
Third parameter of download
method is a mixed named $caption
. When it is false
(default), it will not download caption (subtitle). When it is null
, it will download caption in default language (english). Else, it should be a name of language. See Caption section below.
Download progress
Download progress is available via onProgress
parameter.
it's a closure and has four parameters $downloadedBytes
, $fileSize
, $index
and $count
.
$index
and $count
are useful for tracking download progress of playlist and both values are 1
for single videos.
<?php $youtube = new YoutubeDownloader('PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ'); $youtube->onProgress = function ($downloadedBytes, $fileSize, $index, $count) { if ($count > 1) echo '[' . $index . ' of ' . $count . ' videos] '; if ($fileSize > 0) echo "\r" . 'Downloaded ' . $downloadedBytes . ' of ' . $fileSize . ' bytes [%' . number_format($downloadedBytes * 100 / $fileSize, 2) . '].'; else echo "\r" . 'Downloading...'; // File size is unknown, so just keep downloading }; $youtube->download();
Download complete
Download complete event is available via onComplete
parameter.
it's a closure and has four parameters $filePath
, $fileSize
, $index
and $count
.
$index
and $count
are useful for tracking download progress of playlist and both values are 1
for single videos.
<?php $youtube = new YoutubeDownloader('PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ'); $youtube->onComplete = function ($filePath, $fileSize, $index, $count) { if ($count > 1) echo '[' . $index . ' of ' . $count . ' videos] '; echo 'Downloading of ' . $fileSize . ' bytes has been completed. It is saved in ' . $filePath . PHP_EOL; }; $youtube->download();
Finalized
After completing download, Finalized event will be fired. it is available via onFinalized
parameter.
it's a closure and has four parameters $filePath
, $fileSize
, $index
and $count
.
$index
and $count
are 1
for single videos.
<?php $youtube = new YoutubeDownloader('PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ'); $youtube->onFinalized = function ($filePath, $fileSize, $index, $count) { if ($count > 1) echo '[' . $index . ' of ' . $count . ' videos] '; echo $filePath . ' Finalized' . PHP_EOL; }; $youtube->download();
Filename Sanitizing
File names are consist of video title and format extension. Video titles can contain any character but filesystems doesn't allow all characters.
So filename should be sanitized first. by default there is a public method named pathSafeFilename
that replaces unwanted characters (including space) to underscore (_
).
If you are not happy with this method, you can set a closure for sanitizeFileName
property that receives a filename and returns sanitized filename.
<?php $youtube = new YoutubeDownloader('PLbjM1u8Yb9I0rK4hkPa9TWe4N_idJOnrJ'); $this->sanitizeFileName = function ($fileName) use ($youtube) { return str_replace('_', ' ', $youtube->pathSafeFilename($fileName)); }; $youtube->download();
Caption (Subtitle)
When you get video info, and array is also return named captions
which it's keys are short language names and values are long names.
You should pass one of those short names as the third parameter of download
method to download in that language.
Captions (subtitle) are downloaded in srt
format. you can change this by passing one on srt
, sub
or ass
to setCaptionFormat($format)
method.
You can call setDefaultCaptionLanguage($language)
with a short language name to download further captions in that language.
Please note that sub
format depends on videos FPS (frame per second) and FPS is not known for all itag
s. So this may not work as excepted. It will be fixed in future.
Changes
see CHANGELOG.md.
Experimental Feature
I'm currently working on a pure php implementation of MP4 file editor and muxer. You can enable this feature by calling
<?php $youtube = new YoutubeDownloader('gmFn62dr0D8'); $youtube->enableMp4Editing(true);
As of now, it will set Track name, Artist and Cover Art of videos (and Track number for playlists) according to the video information. In near future releases all subtitles will be muxed in the MP4 file and in far future hopefully muxing adaptive files in one MP4 file will be added.
License
MIT, see LICENSE.