Fix live bitrate

pull/4626/head
Chocobozzz 2021-10-11 15:59:15 +02:00
parent 3edbafb637
commit 41085b1583
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 5 additions and 2 deletions

View File

@ -101,7 +101,7 @@ class MuxingSession extends EventEmitter {
this.fps = options.fps
this.bitrate = options.bitrate
this.ratio = options.bitrate
this.ratio = options.ratio
this.allResolutions = options.allResolutions

View File

@ -237,5 +237,8 @@ export {
function capBitrate (inputBitrate: number, targetBitrate: number) {
if (!inputBitrate) return targetBitrate
return Math.min(targetBitrate, inputBitrate)
// Add 30% margin to input bitrate
const inputBitrateWithMargin = inputBitrate + (inputBitrate * 0.3)
return Math.min(targetBitrate, inputBitrateWithMargin)
}