Add aif output option to directly convert to a non-compressed format.

This commit is contained in:
Everlast Engineering 2024-08-09 17:20:45 -04:00
parent ca536ce3d4
commit 71ea2d5522

View File

@ -88,6 +88,7 @@ WINDOWS_SYSTEM = 'Windows'
CODEC_MAP = {
'aac': 'aac',
'aif': 'pcm_s16be',
'fdk_aac': 'libfdk_aac',
'm4a': 'aac',
'mp3': 'libmp3lame',
@ -98,6 +99,7 @@ CODEC_MAP = {
EXT_MAP = {
'aac': 'm4a',
'aif': 'aif',
'fdk_aac': 'm4a',
'm4a': 'm4a',
'mp3': 'mp3',