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

@ -300,6 +300,14 @@ ExportFormatManager::select_upload (bool value)
check_for_description_change ();
}
void
ExportFormatManager::set_command (std::string command)
{
current_selection->set_command (command);
check_for_description_change ();
}
void
ExportFormatManager::select_trim_beginning (bool value)
{
current_selection->set_trim_beginning (value);