config: Add option to set preferred audio bitrate. (#7072)
The maxaveragebitrate parameter to be used by Opus can be configured through the new opusMaxAvgBitrate config option. Values are restricted by Opus to integers between 6000 to 510000. Works for non-p2p only. move option to Audio section, add documentation Co-authored-by: plokta <dev@plokta.eu>
This commit is contained in:
parent
53281c2d42
commit
b0188a7184
|
@ -111,6 +111,11 @@ var config = {
|
|||
// participants and to enable it back a reload is needed.
|
||||
// startSilent: false
|
||||
|
||||
// Sets the preferred target bitrate for the Opus audio codec by setting its
|
||||
// 'maxaveragebitrate' parameter. Currently not available in p2p mode.
|
||||
// Valid values are in the range 6000 to 510000
|
||||
// opusMaxAvgBitrate: 20000,
|
||||
|
||||
// Video
|
||||
|
||||
// Sets the preferred resolution (height) for local video. Defaults to 720.
|
||||
|
|
|
@ -125,6 +125,7 @@ export default [
|
|||
'minParticipants',
|
||||
'nick',
|
||||
'openBridgeChannel',
|
||||
'opusMaxAvgBitrate',
|
||||
'p2p',
|
||||
'pcStatsInterval',
|
||||
'preferH264',
|
||||
|
|
Loading…
Reference in New Issue