X-Git-Url: https://git.camperquake.de/gitweb.cgi?a=blobdiff_plain;f=videosite-dl.pl;h=257da2d1b69a3bb01553447ec424bf40a2e19666;hb=e5da797ae620c41ae0865cf08048d145ecb93a52;hp=7313bf5ea158bb7932c8224ab2b375f00e39e366;hpb=7719c5d829dc238d2e71b15247541f5d9287f948;p=videosite.git diff --git a/videosite-dl.pl b/videosite-dl.pl index 7313bf5..257da2d 100755 --- a/videosite-dl.pl +++ b/videosite-dl.pl @@ -48,6 +48,21 @@ sub ploader { return @g; } +sub connectors { + my $c = {-name => 'environment', -schemas => {}}; + + if (exists($ENV{'http_proxy'})) { + $c->{-schemas}->{'http'} = $ENV{'http_proxy'} + } + + if (exists($ENV{'https_proxy'})) { + $c->{-schemas}->{'https'} = $ENV{'https_proxy'} + } + + return ( $c ); +} + + my $hq = 0; my $ext = '.flv'; my $y; @@ -56,8 +71,9 @@ my $m; my @g; my $bp; my $info = 0; +my $debug = 0; -GetOptions("i" => \$info); +GetOptions("i" => \$info, "d" => \$debug); # This is some dark magic to find out our real base directory, # where we hope to find our plugins. @@ -72,6 +88,15 @@ unless(@g and defined($f)) { exit 1; } +foreach (@g, $f) { + $_->setio(sub { printf(@_); print("\n"); } ); + + if ($debug) { + $_->setdebug(1); + $_->setconn(\&connectors); + } +} + $f->setval('FILEPATTERN', './%3$s' . $ext); foreach (@ARGV) {