Need to set the fix resolution #157
Unanswered
ChiragLiveu
asked this question in
Q&A
Replies: 1 comment
-
I think you are asking in context to google meet example simulcasting, that is on receiver end we see (high|medium|low) buttons and you want to get rid of them? localVideoRenderer.mediaStream = await videoPlugin?.initializeMediaDevices(simulcastSendEncodings: [
RTCRtpEncoding(rid: "h", minBitrate: 2000000, maxBitrate: 2000000, active: true, scalabilityMode: 'L1T2'),
RTCRtpEncoding(
rid: "m",
minBitrate: 1000000,
maxBitrate: 1000000,
active: true,
scalabilityMode: 'L1T2',
scaleResolutionDownBy: 2,
),
RTCRtpEncoding(
rid: "l",
minBitrate: 512000,
maxBitrate: 512000,
active: true,
scalabilityMode: 'L1T2',
scaleResolutionDownBy: 3,
),
], mediaConstraints: {
'video': {'width': 1280, 'height': 720},
'audio': true
});
```
secondly change the flutter code to remove those simulcast buttons |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a solution to address the resolution issue? I need to disable adaptive resolution support, and I'm wondering if there's a specific flag to set it to false and remove the configuration. Despite extensive research and code debugging, I haven't been able to find a solution. Can anyone assist with this?
Beta Was this translation helpful? Give feedback.
All reactions