fix automatic bitrate adjustment
The regression was introduced in
edb4ffc7e0
and forced a fixed bitrate per
resolution
This commit is contained in:
parent
c1c86c1599
commit
e1d7b98bc7
|
@ -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) => {
|
||||
|
|
Loading…
Reference in New Issue