mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-22 06:13:19 -07:00
fix audio codec to be more universal
This commit is contained in:
parent
60e56a7e8b
commit
510476beac
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ def Transcode_file(filePath):
|
||||||
command.append(outputVideoBitrate)
|
command.append(outputVideoBitrate)
|
||||||
if outputAudioCodec:
|
if outputAudioCodec:
|
||||||
command.append('-c:a')
|
command.append('-c:a')
|
||||||
command.append('lib' + outputAudioCodec + 'lame')
|
command.append(outputAudioCodec)
|
||||||
if outputAudioBitrate:
|
if outputAudioBitrate:
|
||||||
command.append('-b:a')
|
command.append('-b:a')
|
||||||
command.append(outputAudioBitrate)
|
command.append(outputAudioBitrate)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue