From cbfc87367cce587d41ce8848edd7c4e9350e0943 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Sat, 12 Apr 2014 18:23:04 +0200 Subject: [PATCH] videosite-dl: Add -o option --- videosite-dl.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'; -- 1.8.3.1