X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=videosite-dl.pl;h=4222f782dedff4cada23ddaa54b77a9169106232;hb=aedf7360ae2ac6e69d0b2009603c46eedb0af7a2;hp=a907b84a49e6e5816322eefa7b83207b17470915;hpb=f1fdd9a708ce0020c9387cdf2263000ca3c189b2;p=videosite.git diff --git a/videosite-dl.pl b/videosite-dl.pl index a907b84..4222f78 100755 --- a/videosite-dl.pl +++ b/videosite-dl.pl @@ -18,6 +18,7 @@ my %config = ( 'plugin.youtube.QUALITY' => 'hd', 'plugin.filegetter.FILEPATTERN' => './%3$s.flv', ); +my @options; sub link_callback { my $m = shift; @@ -34,7 +35,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';