Created
November 10, 2010 12:16
-
-
Save ngs/670773 to your computer and use it in GitHub Desktop.
download youtube vids as mp4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl -w | |
| # TODO: support cli arguments. | |
| use WWW::YouTube::Download; | |
| my $client = WWW::YouTube::Download->new; | |
| my @ids = qw( | |
| A7h0S1nk9Hk | |
| ); | |
| foreach my $id(@ids) { | |
| $client->download($id, { | |
| file_name => "$id.mp4", | |
| }); | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment