/usr/share/perl5/FlashVideo/Site/Spike.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 29 30 31 32 33 34 | # Part of get-flash-videos. See get_flash_videos for copyright.
package FlashVideo::Site::Spike;
use strict;
use base 'FlashVideo::Site::Mtvnservices';
use FlashVideo::Utils;
use URI::Escape;
sub find_video {
my ($self, $browser, $embed_url) = @_;
my $page_url = $browser->uri->as_string;
my $config_url;
if($browser->content =~ /config_url\s*=\s*["']([^"']+)/) {
$config_url = $1;
} elsif($browser->content =~ /(?:ifilmId|flvbaseclip)=(\d+)/) {
$config_url = "/ui/xml/mediaplayer/config.groovy?ifilmId=$1";
}
die "No config_url/id found\n" unless $config_url;
$browser->get(uri_unescape($config_url));
my $xml = from_xml($browser);
my $feed = uri_unescape($xml->{player}->{feed});
die "Unable to find feed URL\n" unless $feed;
$browser->get($feed);
return $self->handle_feed($browser->content, $browser, $page_url);
}
1;
|