mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-22 14:13:33 -07:00
fix audio codec
This commit is contained in:
parent
77fb97a6da
commit
84a7f7c0aa
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,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(outputAudioCodec)
|
command.append('lib' + outputAudioCodec + 'lame')
|
||||||
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