Changed some Info to Debug

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2022 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2006-10-20 09:30:39 +00:00
parent e429a6b2f4
commit e0df6cac9d
1 changed files with 3 additions and 3 deletions

View File

@ -275,10 +275,10 @@ if ( $overwrite || !-s $video_file )
close( PARAMS ); close( PARAMS );
my $command = ZM_PATH_MPEG_ENCODE." $param_file >mpeg_encode.log"; my $command = ZM_PATH_MPEG_ENCODE." $param_file >mpeg_encode.log";
Info( $command."\n" ); Debug( $command."\n" );
if ( my $output = qx($command) ) if ( my $output = qx($command) )
{ {
Info( $output."\n" ); Debug( $output."\n" );
} }
my $status = $? >> 8; my $status = $? >> 8;
if ( $status ) if ( $status )
@ -321,7 +321,7 @@ if ( $overwrite || !-s $video_file )
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";
Info( $command."\n" ); Debug( $command."\n" );
my $output = qx($command); my $output = qx($command);
my $status = $? >> 8; my $status = $? >> 8;