X-Git-Url: https://git.camperquake.de/gitweb.cgi?p=videosite.git;a=blobdiff_plain;f=videosite-dl.pl;h=b761e182436e085e18e26f9c30967bb4afe37acc;hp=46c8b49eb0718f7678f2bed562c1a220ceabebe9;hb=cbfc87367cce587d41ce8848edd7c4e9350e0943;hpb=a96de45e14a9779163091452496ac91b4c3079ea diff --git a/videosite-dl.pl b/videosite-dl.pl index 46c8b49..b761e18 100755 --- a/videosite-dl.pl +++ b/videosite-dl.pl @@ -16,8 +16,10 @@ my %config = ( mode => 'download', getter => 'filegetter', 'plugin.youtube.QUALITY' => 'hd', + 'plugin.youtube.ADAPTIVE' => 1, 'plugin.filegetter.FILEPATTERN' => './%3$s.flv', ); +my @options; sub link_callback { my $m = shift; @@ -34,7 +36,8 @@ sub link_callback { } -GetOptions("i" => \$info, "d" => \$debug); +GetOptions("i" => \$info, "d" => \$debug, "o=s" => \@options); +%config = (%config, map { split(/=/, $_, 2) } @options); push(@INC, dirname(realpath($0))); load 'libvideosite'; @@ -55,7 +58,7 @@ foreach (@ARGV) { printf("Handling %s...\n", $_); libvideosite::check_for_link({ message => $_, - ewpf => sub { print @_, "\n" }, + io => sub { print @_, "\n" }, window => "", }); }