mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Initial backend support for external export encoder
This adds an experimental pipe to ffmpeg to encode mp3. Currently quality is hardcoded and various aspects remain to be implemented. However, it is sufficient for initial testing.
This commit is contained in:
parent
e4cbd5115e
commit
df72e1ba4f
8 changed files with 144 additions and 4 deletions
|
|
@ -954,6 +954,8 @@ ExportProfileManager::check_format (ExportFormatSpecPtr format, uint32_t channel
|
|||
switch (format->type()) {
|
||||
case ExportFormatBase::T_Sndfile:
|
||||
return check_sndfile_format (format, channels);
|
||||
case ExportFormatBase::T_FFMPEG:
|
||||
return true;
|
||||
|
||||
default:
|
||||
throw ExportFailed (X_("Invalid format given for ExportFileFactory::check!"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue