summaryrefslogtreecommitdiff
path: root/session_utils/export.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-08-06 14:47:50 +0200
committerRobin Gareus <robin@gareus.org>2017-08-06 14:47:50 +0200
commitbc713b00c355e3640f54135a019d8d8c5cd143ff (patch)
tree6159eb11f5b5e6f22a472a09fbd285bb5409e021 /session_utils/export.cc
parentd98b722a28b2b6b998a6382da6dcff8345e287dc (diff)
Improve help text and error-reporting for ardour-export
Diffstat (limited to 'session_utils/export.cc')
-rw-r--r--session_utils/export.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/session_utils/export.cc b/session_utils/export.cc
index ce523306de..aaea10a976 100644
--- a/session_utils/export.cc
+++ b/session_utils/export.cc
@@ -157,8 +157,11 @@ static void usage (int status) {
-V, --version print version information and exit\n\
\n");
printf ("\n\
-The session is exported as 16bit wav.\n\
-If the no output file is given, the session's export dir is used.\n\
+This tool exports the session-range of a given ardour-session to a 16bit wav,\n\
+using the master-bus outputs.\n\
+If the no output-file is given, the session's export dir is used.\n\
+\n\
+Note: the tool expects a session-name without .ardour file-name extension.\n\
\n");
printf ("Report bugs to <http://tracker.ardour.org/>\n"
@@ -228,7 +231,7 @@ int main (int argc, char* argv[])
usage (EXIT_FAILURE);
}
- SessionUtils::init();
+ SessionUtils::init(false);
Session* s = 0;
s = SessionUtils::load_session (argv[optind], argv[optind+1]);