fix automatic bitrate adjustment

The regression was introduced in
edb4ffc7e0 and forced a fixed bitrate per
resolution
pull/1205/head
Rigel Kent 2018-10-08 21:13:13 +02:00
parent c1c86c1599
commit e1d7b98bc7
No known key found for this signature in database
GPG Key ID: EA12971B0E438F36
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ function transcode (options: TranscodeOptions) {
// https://slhck.info/video/2017/03/01/rate-control.html
// https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
const targetBitrate = getTargetBitrate(options.resolution, fps, VIDEO_TRANSCODING_FPS)
command.outputOptions([`-b:v ${ targetBitrate }`, `-maxrate ${ targetBitrate }`, `-bufsize ${ targetBitrate * 2 }`])
command.outputOptions([`-maxrate ${ targetBitrate }`, `-bufsize ${ targetBitrate * 2 }`])
command
.on('error', (err, stdout, stderr) => {