Skip to content

Commit

Permalink
fix: update default bitrate to prevent bandwidth limitation (#106)
Browse files Browse the repository at this point in the history
Co-authored-by: Yohan Totting <[email protected]>
  • Loading branch information
Yohan Totting and tyohan authored Apr 4, 2024
1 parent 074950d commit 297746f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/room/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export const media = {
videoCodecs: ['video/VP9', 'video/H264', 'video/VP8'],
simulcast: false,
svc: true,
scalabilityMode: 'L3T1',
scalabilityMode: 'L3T2',
bitrates: {
high: 700 * 1000,
high: 900 * 1000,
mid: 300 * 1000,
low: 100 * 1000,
},
Expand All @@ -37,7 +37,7 @@ export const media = {
videoCodecs: ['video/VP8', 'video/H264', 'video/VP9'],
simulcast: false,
svc: true,
scalabilityMode: 'L1T2',
scalabilityMode: 'L1T1',
bitrates: {
high: 1200 * 1000,
mid: 500 * 1000,
Expand Down

0 comments on commit 297746f

Please sign in to comment.