Rudimentary post-processing of exported files.

Export format contains a string to be passed to system() after expanding
%1, %2, & %3 via string_compose() to the full path & filename, containing
directory, and basename respectively. No error-checking or any niceties
like that - real programmers will of course always type the command
correctly, and know to watch Ardour's standard output for the results...
This commit is contained in:
Colin Fletcher 2013-10-07 20:28:13 +01:00
parent 8b9a1fae6a
commit 2a93f7a25e
7 changed files with 51 additions and 0 deletions

View file

@ -178,6 +178,8 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList
/* Upload */
Gtk::CheckButton upload_checkbox;
Gtk::Label command_label;
Gtk::Entry command_entry;
/* Format table */
@ -312,6 +314,7 @@ class ExportFormatDialog : public ArdourDialog, public PBD::ScopedConnectionList
void update_with_toc ();
void update_with_cue ();
void update_upload ();
void update_command ();
Gtk::TreeView sample_format_view;
Gtk::TreeView dither_type_view;