App-get_flash_videos

 view release on metacpan or  search on metacpan

lib/FlashVideo/Site/Xnxx.pm  view on Meta::CPAN


sub find_video {
  my ($self, $browser, $embed_url) = @_;

  # Grab the file from the page..
  my $url = ($browser->content =~ /flv_url=(.+?)&/)[0];
  $url = uri_unescape($url);
  die "Unable to extract url" unless $url;

  # Extract filename from page and format
  $browser->content =~ /(?:<span class="style5">|<td style="font-size: 20px;">\s*)<strong>([^<]+)/;

  # title_to_filename() can't extract extension from URLs like
  # foo.flv?stuff - should probably change, but for now don't bother
  # passing in the URL. (Will default to .flv)
  my $filename = title_to_filename($1);
    
  return $url, $filename;
}

1;



( run in 1.462 second using v1.01-cache-2.11-cpan-ceb78f64989 )