/usr/share/perl5/FlashVideo/Site/Pennyarcade.pm is in get-flash-videos 1.25~git2012.06.27-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Part of get-flash-videos. See get_flash_videos for copyright.
package FlashVideo::Site::Pennyarcade;
use strict;
use FlashVideo::Utils;
sub find_video {
my ($self, $browser, $embed_url) = @_;
my $id;
my $title;
if ($browser->content =~/<h2>(.*?)<\/h2>/) {
$title = $1;
$title =~ s/<[^>]*>//g;
}
if ($browser->content =~/http:\/\/blip.tv\/play\/(.*).html/) {
$id = $1;
} else {
die "No ID found\n";
}
# They actually check this...
$browser->add_header("User-Agent" => "Android");
$browser->allow_redirects;
return "http://blip.tv/play/$id.mp4", title_to_filename($title);
}
1;
|