Merge pull request #664 from ZoneMinder/versions
Versions command line args
This commit is contained in:
commit
2f5abfbb13
|
@ -69,6 +69,7 @@ delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
|
||||||
my $report = 0;
|
my $report = 0;
|
||||||
my $interactive = 0;
|
my $interactive = 0;
|
||||||
my $continuous = 0;
|
my $continuous = 0;
|
||||||
|
my $version;
|
||||||
|
|
||||||
sub usage
|
sub usage
|
||||||
{
|
{
|
||||||
|
@ -78,6 +79,7 @@ Parameters are :-
|
||||||
-r, --report - Just report don't actually do anything
|
-r, --report - Just report don't actually do anything
|
||||||
-i, --interactive - Ask before applying any changes
|
-i, --interactive - Ask before applying any changes
|
||||||
-c, --continuous - Run continuously
|
-c, --continuous - Run continuously
|
||||||
|
-v, --version - Print the installed version of ZoneMinder
|
||||||
");
|
");
|
||||||
exit( -1 );
|
exit( -1 );
|
||||||
}
|
}
|
||||||
|
@ -89,14 +91,18 @@ sub deleteSwapImage();
|
||||||
logInit();
|
logInit();
|
||||||
logSetSignal();
|
logSetSignal();
|
||||||
|
|
||||||
if ( !GetOptions( 'report'=>\$report, 'interactive'=>\$interactive, 'continuous'=>\$continuous ) )
|
if ( !GetOptions( report=>\$report, interactive=>\$interactive, continuous=>\$continuous, version=>\$version ) )
|
||||||
{
|
{
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( $version ) {
|
||||||
|
print( ZoneMinder::Base::ZM_VERSION . "\n");
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
if ( ($report + $interactive + $continuous) > 1 )
|
if ( ($report + $interactive + $continuous) > 1 )
|
||||||
{
|
{
|
||||||
print( STDERR "Error, only option may be specified\n" );
|
print( STDERR "Error, only one option may be specified\n" );
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,15 +55,20 @@ my $noregex = 0;
|
||||||
my $sqlfile = '';
|
my $sqlfile = '';
|
||||||
my $dbUser = $Config{ZM_DB_USER};
|
my $dbUser = $Config{ZM_DB_USER};
|
||||||
my $dbPass = $Config{ZM_DB_PASS};
|
my $dbPass = $Config{ZM_DB_PASS};
|
||||||
|
my $version = 0;
|
||||||
|
|
||||||
# Process commandline parameters with getopt long
|
# Process commandline parameters with getopt long
|
||||||
if ( !GetOptions( 'export'=>\$export, 'import'=>\$import, 'overwrite'=>\$overwrite, 'help'=>\$help, 'topreset'=>\$topreset, 'noregex'=>\$noregex, 'user:s'=>\$dbUser, 'pass:s'=>\$dbPass ) ) {
|
if ( !GetOptions( 'export'=>\$export, 'import'=>\$import, 'overwrite'=>\$overwrite, 'help'=>\$help, 'topreset'=>\$topreset, 'noregex'=>\$noregex, 'user:s'=>\$dbUser, 'pass:s'=>\$dbPass, 'version'=>\$version ) ) {
|
||||||
Usage();
|
Usage();
|
||||||
}
|
}
|
||||||
|
|
||||||
$Config{ZM_DB_USER} = $dbUser;
|
$Config{ZM_DB_USER} = $dbUser;
|
||||||
$Config{ZM_DB_PASS} = $dbPass;
|
$Config{ZM_DB_PASS} = $dbPass;
|
||||||
|
|
||||||
|
if ( $version ) {
|
||||||
|
print( ZoneMinder::Base::ZM_VERSION . "\n");
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
# Check to make sure commandline params make sense
|
# Check to make sure commandline params make sense
|
||||||
if ( ((!$help) && ($import + $export + $topreset) != 1 )) {
|
if ( ((!$help) && ($import + $export + $topreset) != 1 )) {
|
||||||
print( STDERR qq/Please give only one of the following: "import", "export", or "topreset".\n/ );
|
print( STDERR qq/Please give only one of the following: "import", "export", or "topreset".\n/ );
|
||||||
|
|
|
@ -78,7 +78,7 @@ sub Usage
|
||||||
Usage: zmdc.pl <command> [daemon [options]]
|
Usage: zmdc.pl <command> [daemon [options]]
|
||||||
Parameters are :-
|
Parameters are :-
|
||||||
<command> - One of 'startup|shutdown|status|check|logrot' or
|
<command> - One of 'startup|shutdown|status|check|logrot' or
|
||||||
'start|stop|restart|reload'.
|
'start|stop|restart|reload|version'.
|
||||||
[daemon [options]] - Daemon name and options, required for second group of commands
|
[daemon [options]] - Daemon name and options, required for second group of commands
|
||||||
");
|
");
|
||||||
exit( -1 );
|
exit( -1 );
|
||||||
|
@ -90,7 +90,11 @@ if( !$command )
|
||||||
print( STDERR "No command given\n" );
|
print( STDERR "No command given\n" );
|
||||||
Usage();
|
Usage();
|
||||||
}
|
}
|
||||||
my $needs_daemon = $command !~ /(?:startup|shutdown|status|check|logrot)/;
|
if ( $command eq 'version' ) {
|
||||||
|
print ZoneMinder::Base::ZM_VERSION."\n";
|
||||||
|
exit( 0 );
|
||||||
|
}
|
||||||
|
my $needs_daemon = $command !~ /(?:startup|shutdown|status|check|logrot|version)/;
|
||||||
my $daemon = shift( @ARGV );
|
my $daemon = shift( @ARGV );
|
||||||
if( $needs_daemon && !$daemon )
|
if( $needs_daemon && !$daemon )
|
||||||
{
|
{
|
||||||
|
|
|
@ -115,11 +115,12 @@ delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
|
||||||
my $delay = $Config{ZM_FILTER_EXECUTE_INTERVAL};
|
my $delay = $Config{ZM_FILTER_EXECUTE_INTERVAL};
|
||||||
my $event_id = 0;
|
my $event_id = 0;
|
||||||
my $filter_parm = "";
|
my $filter_parm = "";
|
||||||
|
my $version = 0;
|
||||||
|
|
||||||
sub Usage
|
sub Usage
|
||||||
{
|
{
|
||||||
print( "
|
print( "
|
||||||
Usage: zmfilter.pl [-f <filter name>,--filter=<filter name>]
|
Usage: zmfilter.pl [-f <filter name>,--filter=<filter name>] | -v, --version
|
||||||
Parameters are :-
|
Parameters are :-
|
||||||
-f<filter name>, --filter=<filter name> - The name of a specific filter to run
|
-f<filter name>, --filter=<filter name> - The name of a specific filter to run
|
||||||
");
|
");
|
||||||
|
@ -158,10 +159,14 @@ sub DateTimeToSQL
|
||||||
return( strftime( "%Y-%m-%d %H:%M:%S", localtime( $dt_val ) ) );
|
return( strftime( "%Y-%m-%d %H:%M:%S", localtime( $dt_val ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !GetOptions( 'filter=s'=>\$filter_parm ) )
|
if ( !GetOptions( 'filter=s'=>\$filter_parm, version=>\$version ) )
|
||||||
{
|
{
|
||||||
Usage();
|
Usage();
|
||||||
}
|
}
|
||||||
|
if ( $version ) {
|
||||||
|
print ZoneMinder::Base::ZM_VERSION . "\n";
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ! EVENT_PATH ) {
|
if ( ! EVENT_PATH ) {
|
||||||
Error( "No event path defined. Config was $Config{ZM_DIR_EVENTS}\n" );
|
Error( "No event path defined. Config was $Config{ZM_DIR_EVENTS}\n" );
|
||||||
|
|
|
@ -47,15 +47,20 @@ delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
|
||||||
logInit();
|
logInit();
|
||||||
|
|
||||||
my $command = $ARGV[0];
|
my $command = $ARGV[0];
|
||||||
|
if ( $command eq 'version' ) {
|
||||||
|
print ZoneMinder::Base::ZM_VERSION . "\n";
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
my $state;
|
my $state;
|
||||||
|
|
||||||
my $dbh = zmDbConnect();
|
my $dbh;
|
||||||
|
|
||||||
if ( !$command || $command !~ /^(?:start|stop|restart|status|logrot)$/ )
|
if ( !$command || $command !~ /^(?:start|stop|restart|status|logrot|version)$/ )
|
||||||
{
|
{
|
||||||
if ( $command )
|
if ( $command )
|
||||||
{
|
{
|
||||||
|
$dbh = zmDbConnect();
|
||||||
# Check to see if it's a valid run state
|
# Check to see if it's a valid run state
|
||||||
my $sql = 'select * from States where Name = ?';
|
my $sql = 'select * from States where Name = ?';
|
||||||
my $sth = $dbh->prepare_cached( $sql ) or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
my $sth = $dbh->prepare_cached( $sql ) or Fatal( "Can't prepare '$sql': ".$dbh->errstr() );
|
||||||
|
@ -78,10 +83,11 @@ if ( !$command || $command !~ /^(?:start|stop|restart|status|logrot)$/ )
|
||||||
}
|
}
|
||||||
if ( !$command )
|
if ( !$command )
|
||||||
{
|
{
|
||||||
print( "Usage: zmpkg.pl <start|stop|restart|status|logrot|'state'>\n" );
|
print( "Usage: zmpkg.pl <start|stop|restart|status|logrot|'state'|version>\n" );
|
||||||
exit( -1 );
|
exit( -1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$dbh = zmDbConnect() if ! $dbh;
|
||||||
|
|
||||||
# Move to the right place
|
# Move to the right place
|
||||||
chdir( $Config{ZM_PATH_WEB} ) or Fatal( "Can't chdir to '".$Config{ZM_PATH_WEB}."': $!" );
|
chdir( $Config{ZM_PATH_WEB} ) or Fatal( "Can't chdir to '".$Config{ZM_PATH_WEB}."': $!" );
|
||||||
|
|
|
@ -35,10 +35,10 @@ use ZoneMinder::Logger qw(:all);
|
||||||
|
|
||||||
my $command = $ARGV[0];
|
my $command = $ARGV[0];
|
||||||
|
|
||||||
if ( (scalar(@ARGV) == 1) && ($command =~ /^(start|stop|restart)$/ )) {
|
if ( (scalar(@ARGV) == 1) && ($command =~ /^(start|stop|restart|version)$/ )) {
|
||||||
$command = $1;
|
$command = $1;
|
||||||
} else {
|
} else {
|
||||||
die(" USAGE: zmsystemctl.pl <start|stop|restart>\n");
|
die(" USAGE: zmsystemctl.pl <start|stop|restart|version>\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
my $path = qx(which systemctl);
|
my $path = qx(which systemctl);
|
||||||
|
|
|
@ -55,6 +55,7 @@ my $scale = '';
|
||||||
my $fps = '';
|
my $fps = '';
|
||||||
my $size = '';
|
my $size = '';
|
||||||
my $overwrite = 0;
|
my $overwrite = 0;
|
||||||
|
my $version = 0;
|
||||||
|
|
||||||
my @formats = split( /\s+/, $Config{ZM_FFMPEG_FORMATS} );
|
my @formats = split( /\s+/, $Config{ZM_FFMPEG_FORMATS} );
|
||||||
for ( my $i = 0; $i < @formats; $i++ )
|
for ( my $i = 0; $i < @formats; $i++ )
|
||||||
|
@ -77,15 +78,21 @@ Parameters are :-
|
||||||
-F<fps>, --fps=<fps> - Absolute frame rate, in frames per second
|
-F<fps>, --fps=<fps> - Absolute frame rate, in frames per second
|
||||||
-S<size>, --size=<size> - Absolute video size, WxH or other specification supported by ffmpeg
|
-S<size>, --size=<size> - Absolute video size, WxH or other specification supported by ffmpeg
|
||||||
-o, --overwrite - Whether to overwrite an existing file, off by default.
|
-o, --overwrite - Whether to overwrite an existing file, off by default.
|
||||||
|
-v, --version - Outputs the currently installed version of ZoneMinder
|
||||||
");
|
");
|
||||||
exit( -1 );
|
exit( -1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !GetOptions( 'event=i'=>\$event_id, 'format|f=s'=>\$format, 'rate|r=f'=>\$rate, 'scale|s=f'=>\$scale, 'fps|F=f'=>\$fps, 'size|S=s'=>\$size, 'overwrite'=>\$overwrite ) )
|
if ( !GetOptions( 'event=i'=>\$event_id, 'format|f=s'=>\$format, 'rate|r=f'=>\$rate, 'scale|s=f'=>\$scale, 'fps|F=f'=>\$fps, 'size|S=s'=>\$size, 'overwrite'=>\$overwrite, version=>\$version ) )
|
||||||
{
|
{
|
||||||
Usage();
|
Usage();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( $version ) {
|
||||||
|
print ZoneMinder::Base::ZM_VERSION . "\n";
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
if ( !$event_id || $event_id < 0 )
|
if ( !$event_id || $event_id < 0 )
|
||||||
{
|
{
|
||||||
print( STDERR "Please give a valid event id\n" );
|
print( STDERR "Please give a valid event id\n" );
|
||||||
|
|
|
@ -63,6 +63,7 @@ Usage: zmx10.pl -c <command>,--command=<command> [-u <unit code>,--unit-code=<un
|
||||||
Parameters are :-
|
Parameters are :-
|
||||||
-c <command>, --command=<command> - Command to issue, one of 'on','off','dim','bright','status','shutdown'
|
-c <command>, --command=<command> - Command to issue, one of 'on','off','dim','bright','status','shutdown'
|
||||||
-u <unit code>, --unit-code=<unit code> - Unit code to act on required for all commands except 'status' (optional) and 'shutdown'
|
-u <unit code>, --unit-code=<unit code> - Unit code to act on required for all commands except 'status' (optional) and 'shutdown'
|
||||||
|
-v, --verison - Pirnts the currently installed version of ZoneMinder
|
||||||
");
|
");
|
||||||
exit( -1 );
|
exit( -1 );
|
||||||
}
|
}
|
||||||
|
@ -72,11 +73,16 @@ logSetSignal();
|
||||||
|
|
||||||
my $command;
|
my $command;
|
||||||
my $unit_code;
|
my $unit_code;
|
||||||
|
my $version;
|
||||||
|
|
||||||
if ( !GetOptions( 'command=s'=>\$command, 'unit-code=i'=>\$unit_code ) )
|
if ( !GetOptions( 'command=s'=>\$command, 'unit-code=i'=>\$unit_code, version=>\$version ) )
|
||||||
{
|
{
|
||||||
Usage();
|
Usage();
|
||||||
}
|
}
|
||||||
|
if ( $version ) {
|
||||||
|
print ZoneMinder::Base::ZM_VERSION;
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
die( "No command given" ) unless( $command );
|
die( "No command given" ) unless( $command );
|
||||||
die( "No unit code given" ) unless( $unit_code || ($command =~ /(?:start|status|shutdown)/) );
|
die( "No unit code given" ) unless( $unit_code || ($command =~ /(?:start|status|shutdown)/) );
|
||||||
|
|
|
@ -31,6 +31,7 @@ void Usage()
|
||||||
fprintf( stderr, "Options:\n" );
|
fprintf( stderr, "Options:\n" );
|
||||||
fprintf( stderr, " -m, --monitor <monitor_id> : Specify which monitor to use\n" );
|
fprintf( stderr, " -m, --monitor <monitor_id> : Specify which monitor to use\n" );
|
||||||
fprintf( stderr, " -h, --help : This screen\n" );
|
fprintf( stderr, " -h, --help : This screen\n" );
|
||||||
|
fprintf( stderr, " -v, --version : Report the installed version of ZoneMinder\n" );
|
||||||
exit( 0 );
|
exit( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,6 +46,7 @@ int main( int argc, char *argv[] )
|
||||||
static struct option long_options[] = {
|
static struct option long_options[] = {
|
||||||
{"monitor", 1, 0, 'm'},
|
{"monitor", 1, 0, 'm'},
|
||||||
{"help", 0, 0, 'h'},
|
{"help", 0, 0, 'h'},
|
||||||
|
{"version", 0, 0, 'v'},
|
||||||
{0, 0, 0, 0}
|
{0, 0, 0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -52,7 +54,7 @@ int main( int argc, char *argv[] )
|
||||||
{
|
{
|
||||||
int option_index = 0;
|
int option_index = 0;
|
||||||
|
|
||||||
int c = getopt_long (argc, argv, "m:h", long_options, &option_index);
|
int c = getopt_long (argc, argv, "m:h:v", long_options, &option_index);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
|
@ -67,6 +69,9 @@ int main( int argc, char *argv[] )
|
||||||
case '?':
|
case '?':
|
||||||
Usage();
|
Usage();
|
||||||
break;
|
break;
|
||||||
|
case 'v':
|
||||||
|
cout << ZM_VERSION << "\n";
|
||||||
|
exit(0);
|
||||||
default:
|
default:
|
||||||
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -45,6 +45,7 @@ void Usage()
|
||||||
fprintf( stderr, " -f, --file <file_path> : For local images, jpg file to access.\n" );
|
fprintf( stderr, " -f, --file <file_path> : For local images, jpg file to access.\n" );
|
||||||
fprintf( stderr, " -m, --monitor <monitor_id> : For sources associated with a single monitor\n" );
|
fprintf( stderr, " -m, --monitor <monitor_id> : For sources associated with a single monitor\n" );
|
||||||
fprintf( stderr, " -h, --help : This screen\n" );
|
fprintf( stderr, " -h, --help : This screen\n" );
|
||||||
|
fprintf( stderr, " -v, --version : Report the installed version of ZoneMinder\n" );
|
||||||
exit( 0 );
|
exit( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,6 +72,7 @@ int main( int argc, char *argv[] )
|
||||||
{"file", 1, 0, 'f'},
|
{"file", 1, 0, 'f'},
|
||||||
{"monitor", 1, 0, 'm'},
|
{"monitor", 1, 0, 'm'},
|
||||||
{"help", 0, 0, 'h'},
|
{"help", 0, 0, 'h'},
|
||||||
|
{"version", 0, 0, 'v'},
|
||||||
{0, 0, 0, 0}
|
{0, 0, 0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -78,7 +80,7 @@ int main( int argc, char *argv[] )
|
||||||
{
|
{
|
||||||
int option_index = 0;
|
int option_index = 0;
|
||||||
|
|
||||||
int c = getopt_long (argc, argv, "d:H:P:p:f:m:h", long_options, &option_index);
|
int c = getopt_long (argc, argv, "d:H:P:p:f:m:h:v", long_options, &option_index);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
|
@ -108,6 +110,9 @@ int main( int argc, char *argv[] )
|
||||||
case '?':
|
case '?':
|
||||||
Usage();
|
Usage();
|
||||||
break;
|
break;
|
||||||
|
case 'v':
|
||||||
|
cout << ZM_VERSION << "\n";
|
||||||
|
exit(0);
|
||||||
default:
|
default:
|
||||||
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -99,6 +99,7 @@ void Usage()
|
||||||
fprintf( stderr, "Options:\n" );
|
fprintf( stderr, "Options:\n" );
|
||||||
fprintf( stderr, " -m, --monitor <monitor_id> : Specify which monitor to use\n" );
|
fprintf( stderr, " -m, --monitor <monitor_id> : Specify which monitor to use\n" );
|
||||||
fprintf( stderr, " -h, --help : This screen\n" );
|
fprintf( stderr, " -h, --help : This screen\n" );
|
||||||
|
fprintf( stderr, " -v, --version : Report the installed version of ZoneMinder\n" );
|
||||||
exit( 0 );
|
exit( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -113,6 +114,7 @@ int main( int argc, char *argv[] )
|
||||||
static struct option long_options[] = {
|
static struct option long_options[] = {
|
||||||
{"monitor", 1, 0, 'm'},
|
{"monitor", 1, 0, 'm'},
|
||||||
{"help", 0, 0, 'h'},
|
{"help", 0, 0, 'h'},
|
||||||
|
{"version", 0, 0, 'v'},
|
||||||
{0, 0, 0, 0}
|
{0, 0, 0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -120,7 +122,7 @@ int main( int argc, char *argv[] )
|
||||||
{
|
{
|
||||||
int option_index = 0;
|
int option_index = 0;
|
||||||
|
|
||||||
int c = getopt_long (argc, argv, "m:h", long_options, &option_index);
|
int c = getopt_long (argc, argv, "m:h:v", long_options, &option_index);
|
||||||
if (c == -1)
|
if (c == -1)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
|
@ -135,6 +137,9 @@ int main( int argc, char *argv[] )
|
||||||
case '?':
|
case '?':
|
||||||
Usage();
|
Usage();
|
||||||
break;
|
break;
|
||||||
|
case 'v':
|
||||||
|
cout << ZM_VERSION << "\n";
|
||||||
|
exit(0);
|
||||||
default:
|
default:
|
||||||
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
//fprintf( stderr, "?? getopt returned character code 0%o ??\n", c );
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include "zm_stream.h"
|
#include "zm_stream.h"
|
||||||
|
|
||||||
// Possible command-line options
|
// Possible command-line options
|
||||||
#define OPTIONS "e:o:u:f:s:b:m:d:i:?"
|
#define OPTIONS "e:o:u:f:s:b:m:d:i:?:h:v"
|
||||||
|
|
||||||
// Default ZMS values
|
// Default ZMS values
|
||||||
#define ZMS_DEFAULT_DEBUG 0
|
#define ZMS_DEFAULT_DEBUG 0
|
||||||
|
@ -87,6 +87,7 @@ int main(int argc, char** argv) {
|
||||||
case 'd':
|
case 'd':
|
||||||
debug = atoi(optarg);
|
debug = atoi(optarg);
|
||||||
break;
|
break;
|
||||||
|
case 'h':
|
||||||
case 'i':
|
case 'i':
|
||||||
case '?':
|
case '?':
|
||||||
printf("-e <mode> : Specify output mode: mpeg/jpg/zip/single/raw. Default = %s\n", ZMS_DEFAULT_MODE);
|
printf("-e <mode> : Specify output mode: mpeg/jpg/zip/single/raw. Default = %s\n", ZMS_DEFAULT_MODE);
|
||||||
|
@ -97,8 +98,12 @@ int main(int argc, char** argv) {
|
||||||
printf("-b <bitrate in bps> : Specify bitrate. Default = %d\n", ZMS_DEFAULT_BITRATE);
|
printf("-b <bitrate in bps> : Specify bitrate. Default = %d\n", ZMS_DEFAULT_BITRATE);
|
||||||
printf("-m <monitor id> : Specify monitor id. Default = %d\n", ZMS_DEFAULT_ID);
|
printf("-m <monitor id> : Specify monitor id. Default = %d\n", ZMS_DEFAULT_ID);
|
||||||
printf("-d <debug mode> : 0 = off, 1 = no streaming, 2 = with streaming. Default = 0\n");
|
printf("-d <debug mode> : 0 = off, 1 = no streaming, 2 = with streaming. Default = 0\n");
|
||||||
printf("-i or -? : This information\n");
|
printf("-i or -? or -h: This information\n");
|
||||||
|
printf("-v : This installed version of ZoneMinder\n");
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
case 'v':
|
||||||
|
cout << ZM_VERSION << "\n";
|
||||||
|
exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue