Skip to content

Commit

Permalink
fix: 비디오 프로듀서 옵션의 최대 비트 전송률 조정 및 불필요한 scalabilityMode 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
seoko97 committed Dec 5, 2024
1 parent a86c8bd commit a706740
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/mediasoup/src/client/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,18 @@ export const VIDEO_PRODUCER_OPTIONS: ProducerOptions = {
rid: 'r0',
maxBitrate: 750000,
scaleResolutionDownBy: 2,
scalabilityMode: 'S2T3',
maxFramerate: 30,
},
{
rid: 'r1',
maxBitrate: 2000000,
scaleResolutionDownBy: 1.5,
scalabilityMode: 'S2T3',
maxFramerate: 30,
},
{
rid: 'r2',
maxBitrate: 3000000,
maxBitrate: 3500000,
scaleResolutionDownBy: 1,
scalabilityMode: 'S2T3',
maxFramerate: 30,
},
],
Expand Down

0 comments on commit a706740

Please sign in to comment.