WWW::YouTube::Download(3pm) | User Contributed Perl Documentation | WWW::YouTube::Download(3pm) |
WWW::YouTube::Download - WWW::YouTube::Download - Very simple YouTube video download interface
version 0.65
use WWW::YouTube::Download; my $client = WWW::YouTube::Download->new; $client->download($video_id); my $video_url = $client->get_video_url($video_id); my $title = $client->get_title($video_id); # maybe encoded utf8 string. my $fmt = $client->get_fmt($video_id); # maybe highest quality. my $suffix = $client->get_suffix($video_id); # maybe highest quality file suffix
WWW::YouTube::Download is a library to download videos from YouTube. It relies entirely on scraping a video's webpage and does not use YT's /get_video_info URL space.
$client = WWW::YouTube::Download->new;
Creates a WWW::YouTube::Download instance.
$client->download($video_id); $client->download($video_id, { fmt => 37, filename => 'sample.mp4', # save file name }); $client->download($video_id, { filename => '{title}.{suffix}', # maybe `video_title.mp4` }); $client->download($video_id, { cb => \&callback, });
Download the video file. The first parameter is passed to YouTube video url.
Allowed arguments:
"filename" supported format placeholders:
{video_id} {title} {user} {fmt} {suffix} {resolution}
Output filename is set to "{video_id}.{suffix}" by default.
$client->playback_url($video_id); $client->playback_url($video_id, { fmt => 37 });
Return playback URL of the video. This is direct link to the movie file. Function supports only "fmt" option.
The "video_url_map" has one key/value pair for each available format, where the key is the format identifier (can be used as "fmt" parameter for "download", for example) and the value is a hash reference with the following data:
$self->ua->agent(); $self->ua($LWP_LIKE_OBJECT);
Sets and gets LWP::UserAgent object.
Optionally accepts a second argument, a hashref of options. Currently, you can pass a "limit" value to stop downloading of subsequent pages on larger playlists after x-amount of fetches (a limit of fetches, not playlist items). For example, pass 1 to only download the first page of videos from a playlist in order to "skim" the "tip" of new videos in a playlist. YouTube currently returns 100 videos at max per page.
This method is used by the youtube-playlists.pl script.
yusukebe
Please use github issues: <https://github.com/xaicron/p5-www-youtube-download/issues>.
WWW::YouTube::Info and WWW::YouTube::Info::Simple. WWW::NicoVideo::Download <http://rg3.github.io/youtube-dl/>
xaicron <xaicron {@} cpan.org>
This software is copyright (c) 2013 by Yuji Shimada.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2020-11-23 | perl v5.32.0 |