summaryrefslogtreecommitdiff
path: root/fetch-files-cba.pl
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2013-03-14 17:34:10 (GMT)
committerChristian Pointner <equinox@helsinki.at>2013-03-14 17:34:10 (GMT)
commitf8894cb574e88ae3495f914b78c2c7653d73b3e5 (patch)
tree9de8ac6e3202821f2406e4505009f842dc4e1b57 /fetch-files-cba.pl
parent178a9fbb4f2f1dcd1ac4a29030e7194a9920b3da (diff)
export last note of zip fm for rebroadcasts
Diffstat (limited to 'fetch-files-cba.pl')
-rwxr-xr-xfetch-files-cba.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/fetch-files-cba.pl b/fetch-files-cba.pl
index ccb7d7e..4aaa227 100755
--- a/fetch-files-cba.pl
+++ b/fetch-files-cba.pl
@@ -44,7 +44,7 @@ if(@ARGV == 0) {
exit 1;
}
-my $RSS_URL = "http://cba.fro.at/seriesrss/$ARGV[0]?dev=true";
+my $RSS_URL = "http://cba.fro.at/seriesrss/$ARGV[0]?dev=true&limit=10000";
print "Fetching files form '$RSS_URL'\n";
my $feed = XML::Feed->parse(URI->new($RSS_URL))
@@ -64,6 +64,11 @@ for my $entry ($feed->entries) {
$url = $1 . $2;
}
+ # if($i <= 100) {
+ # print" --> skipping " . $url . "\n";
+ # last;
+ # }
+
my $ff = File::Fetch->new(uri => $url);
print " --> downloading " . $url . " (" . $enclosure->length . " Bytes) .. ";
my $file = $ff->fetch() or die $ff->error;