Skip to content

Commit

Permalink
Merge pull request #116 from inlivedev/fix/svc
Browse files Browse the repository at this point in the history
use L3T3_KEY for scalability mode and vp9 for screenshare
  • Loading branch information
tyohan authored Aug 6, 2024
2 parents 4f6b7cc + af194f8 commit 5881aeb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/room/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const media = {
videoCodecs: ['video/VP9', 'video/H264', 'video/VP8'],
simulcast: false,
svc: true,
scalabilityMode: 'L3T2',
scalabilityMode: 'L3T3_KEY',
bitrates: {
high: 900 * 1000,
mid: 300 * 1000,
Expand All @@ -34,13 +34,13 @@ export const media = {
},
screen: {
maxFramerate: 30,
videoCodecs: ['video/VP8', 'video/H264', 'video/VP9'],
videoCodecs: ['video/VP9', 'video/VP8', 'video/H264'],
simulcast: false,
svc: true,
scalabilityMode: 'L1T1',
scalabilityMode: 'L1T3',
bitrates: {
high: 1200 * 1000,
mid: 500 * 1000,
high: 2000 * 1000,
mid: 800 * 1000,
low: 150 * 1000,
},
},
Expand Down

0 comments on commit 5881aeb

Please sign in to comment.