Ignore:
Timestamp:
2009-04-06T13:32:10+12:00 (15 years ago)
Author:
davidb
Message:

Change from using videocoverter.pm to VideoConverter.pm

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/gsdl-video/trunk/perllib/plugins/MultimediaPlugin.pm

    r18556 r18897  
    9797    my $result = `ffmpeg -h 2>&1`;
    9898
    99 
    10099    if (!defined $result || $result !~ m/^FFmpeg version/) {
    101100        $self->{'ffmpeg_installed'} = 0;
    102         print STDERR $result;
     101        if (defined $result) {
     102        print STDERR $result;
     103        }
     104        else {
     105        print STDERR "Unable to find ffmpeg\n";
     106        }
    103107    }
    104108    else {
Note: See TracChangeset for help on using the changeset viewer.