Removed bashism

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2623 e3e1d417-86f3-4887-817a-d78f3d33393f
pull/27/merge
stan 2008-09-01 15:23:56 +00:00
parent 31a0762d9e
commit dfb9331c62
1 changed files with 1 additions and 1 deletions

View File

@ -229,7 +229,7 @@ if ( $overwrite || !-s $video_file )
$video_size = $size;
}
my $command = ZM_PATH_FFMPEG." -y -r $frame_rate ".ZM_FFMPEG_INPUT_OPTIONS." -i %0".ZM_EVENT_IMAGE_DIGITS."d-capture.jpg -s $video_size ".ZM_FFMPEG_OUTPUT_OPTIONS." '$video_file' >& ffmpeg.log";
my $command = ZM_PATH_FFMPEG." -y -r $frame_rate ".ZM_FFMPEG_INPUT_OPTIONS." -i %0".ZM_EVENT_IMAGE_DIGITS."d-capture.jpg -s $video_size ".ZM_FFMPEG_OUTPUT_OPTIONS." '$video_file' > ffmpeg.log 2>&1";
Debug( $command."\n" );
my $output = qx($command);