1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-17 16:50:26 +02:00

Bug 2372 - ENH: Export Multiple with (external program) Audacity fails to export if labels have no extension

Add 2 additional example command lines
This commit is contained in:
Leland Lucius 2020-04-14 08:40:48 -05:00
parent 3bbcf2a15e
commit 7de937047e

View File

@ -87,6 +87,8 @@ ExportCLOptions::ExportCLOptions(wxWindow *parent, int WXUNUSED(format))
mHistory.Load(*gPrefs, wxT("/FileFormats/ExternalProgramHistory"));
if (mHistory.GetCount() == 0) {
mHistory.AddFileToHistory(wxT("ffmpeg -i - \"%f.opus\""), false);
mHistory.AddFileToHistory(wxT("ffmpeg -i - \"%f.wav\""), false);
mHistory.AddFileToHistory(wxT("ffmpeg -i - \"%f\""), false);
mHistory.AddFileToHistory(wxT("lame - \"%f\""), false);
}