This file is indexed.

/usr/share/perl5/FlashVideo/FFmpegDownloader.pm is in get-flash-videos 1.25~git2014.03.23-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
35
36
37
38
39
# Part of get-flash-videos. See get_flash_videos for copyright.
package FlashVideo::FFmpegDownloader;

use strict;
use warnings;
use base 'FlashVideo::Downloader';
use FlashVideo::Utils;

sub download {
  my ($self, $ffmpeg_data, $file) = @_;

  $self->{printable_filename} = $file;
  my $executable;

  # Look for executable (ffmpeg or avconv)
  if (!is_program_on_path("ffmpeg")) {
    if (!is_program_on_path("avconv")) {
      die "Could not find ffmpeg nor avconv executable!";
    } else {
      $executable = "avconv";
    }
  } else {
    $executable = "ffmpeg";
  }

  # Prepend the executable to the list of arguments
  my @args = @{$ffmpeg_data->{args}};
  unshift @args, $executable;

  # Execute command
  if (system(@args) != 0) {
    die "Calling @args failed: $?";
  }

  # Return size of the downloaded file
  return -s $file;
}

1;