Steve_BZ has asked for the wisdom of the Perl Monks concerning the following question:
my $h = eval { start( [ $self->ffmpeg, '-y', '-i', $self->input_file, @{ $self->options }, $self->output_file ], @opts, ); };
1; __END__ =head1 NAME FFmpeg::Command - A wrapper class for ffmpeg command line utility. =head1 DESCRIPTION A simple interface for using ffmpeg command line utility. =head1 SYNOPSIS use FFmpeg::Command; my $ffmpeg = FFmpeg::Command->new('/usr/local/bin/ffmpeg'); $ffmpeg->input_options({ file => $input_file, });
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to interpret /usr/local/bin in Windows
by Corion (Patriarch) on Apr 16, 2009 at 12:06 UTC | |
by Steve_BZ (Chaplain) on Apr 16, 2009 at 15:27 UTC |