Fix broken audio with transcoding

This commit is contained in:
Chocobozzz
2018-12-11 17:48:14 +01:00
parent 44848a51dc
commit 64e3e27053

View File

@@ -328,10 +328,10 @@ async function presetH264 (command: ffmpeg.FfmpegCommand, resolution: VideoResol
const audioCodecName = parsedAudio.audioStream[ 'codec_name' ]
let bitrate: number
if (audio.bitrate[ audioCodecName ]) {
bitrate = audio.bitrate[ audioCodecName ](parsedAudio.audioStream[ 'bit_rate' ])
localCommand = localCommand.audioCodec('aac')
if (bitrate === -1) localCommand = localCommand.audioCodec('copy')
else if (bitrate !== undefined) localCommand = localCommand.audioBitrate(bitrate)
bitrate = audio.bitrate[ audioCodecName ](parsedAudio.audioStream[ 'bit_rate' ])
if (bitrate !== undefined && bitrate !== -1) localCommand = localCommand.audioBitrate(bitrate)
}
}