X-Git-Url: https://git.camperquake.de/gitweb.cgi?p=videosite.git;a=blobdiff_plain;f=videosite-dl.pl;h=b761e182436e085e18e26f9c30967bb4afe37acc;hp=688efb34eea9b0b81667058c0bb058691f386b5b;hb=cbfc87367cce587d41ce8848edd7c4e9350e0943;hpb=eeddf244ed2b5c9cde3bda1f264f6b0bd8155bb3 diff --git a/videosite-dl.pl b/videosite-dl.pl index 688efb3..b761e18 100755 --- a/videosite-dl.pl +++ b/videosite-dl.pl @@ -19,6 +19,7 @@ my %config = ( 'plugin.youtube.ADAPTIVE' => 1, 'plugin.filegetter.FILEPATTERN' => './%3$s.flv', ); +my @options; sub link_callback { my $m = shift; @@ -35,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';