mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-14 17:22:53 -07:00
Enable the use of the experimental AAC codec
This commit is contained in:
parent
59a9cb245e
commit
9d491c14b0
1 changed files with 3 additions and 0 deletions
|
@ -92,6 +92,9 @@ def Transcode_directory(dirName):
|
|||
if len(outputAudioCodec) > 0:
|
||||
command.append('-c:a')
|
||||
command.append(outputAudioCodec)
|
||||
if outputAudioCodec == 'aac': # Allow users to use the experimental AAC codec that's built into recent versions of ffmpeg
|
||||
command.append('-strict')
|
||||
command.append('-2')
|
||||
else:
|
||||
command.append('-c:a')
|
||||
command.append('copy')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue