mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
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:
parent
8b9a1fae6a
commit
2a93f7a25e
7 changed files with 51 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue