summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-08-24 17:54:57 +0200
committerCarl Hetherington <cth@carlh.net>2023-08-24 17:54:57 +0200
commita912781b5dac5b3d30ce09e7ac8b53f9f14f36ac (patch)
treef78b32348312372006fc13c5c88a157c85d96b08
parent35eda8726346a6f3d8dea21e6474fc8cdbedef31 (diff)
Add some more detail to the KDM CLI help.
-rw-r--r--src/lib/kdm_cli.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/lib/kdm_cli.cc b/src/lib/kdm_cli.cc
index 05a59142f..e8ce6d155 100644
--- a/src/lib/kdm_cli.cc
+++ b/src/lib/kdm_cli.cc
@@ -58,22 +58,22 @@ help (std::function<void (string)> out)
{
out (String::compose("Syntax: %1 [OPTION] <FILM|CPL-ID|DKDM>", program_name));
out (" -h, --help show this help");
- out (" -o, --output output file or directory");
- out (" -K, --filename-format filename format for KDMs");
- out (" -Z, --container-name-format filename format for ZIP containers");
- out (" -f, --valid-from valid from time (in local time zone of the cinema) (e.g. \"2013-09-28 01:41:51\") or \"now\"");
- out (" -t, --valid-to valid to time (in local time zone of the cinema) (e.g. \"2014-09-28 01:41:51\")");
- out (" -d, --valid-duration valid duration (e.g. \"1 day\", \"4 hours\", \"2 weeks\")");
- out (" -F, --formulation modified-transitional-1, multiple-modified-transitional-1, dci-any or dci-specific [default modified-transitional-1]");
+ out (" -o, --output <path> output file or directory");
+ out (" -K, --filename-format <format> filename format for KDMs");
+ out (" -Z, --container-name-format <format> filename format for ZIP containers");
+ out (" -f, --valid-from <time> valid from time (in local time zone of the cinema) (e.g. \"2013-09-28 01:41:51\") or \"now\"");
+ out (" -t, --valid-to <time> valid to time (in local time zone of the cinema) (e.g. \"2014-09-28 01:41:51\")");
+ out (" -d, --valid-duration <duration> valid duration (e.g. \"1 day\", \"4 hours\", \"2 weeks\")");
+ out (" -F, --formulation <formulation> modified-transitional-1, multiple-modified-transitional-1, dci-any or dci-specific [default modified-transitional-1]");
out (" -p, --disable-forensic-marking-picture disable forensic marking of pictures essences");
out (" -a, --disable-forensic-marking-audio disable forensic marking of audio essences (optionally above a given channel, e.g 12)");
out (" -e, --email email KDMs to cinemas");
out (" -z, --zip ZIP each cinema's KDMs into its own file");
out (" -v, --verbose be verbose");
- out (" -c, --cinema cinema name (when using -C) or name/email (to filter cinemas)");
- out (" -S, --screen screen name (when using -C) or screen name (to filter screens when using -c)");
- out (" -C, --certificate file containing projector certificate");
- out (" -T, --trusted-device file containing a trusted device's certificate");
+ out (" -c, --cinema <name|email> cinema name (when using -C) or name/email (to filter cinemas)");
+ out (" -S, --screen <name> screen name (when using -C) or screen name (to filter screens when using -c)");
+ out (" -C, --certificate <file> file containing projector certificate");
+ out (" -T, --trusted-device <file> file containing a trusted device's certificate");
out (" --list-cinemas list known cinemas from the DCP-o-matic settings");
out (" --list-dkdm-cpls list CPLs for which DCP-o-matic has DKDMs");
out ("");