mirror of
https://github.com/lubosz/overte.git
synced 2025-04-05 21:22:00 +02:00
Attempt to fix DEV-2859 with tighter constraints on screenshare resolution and framerate
This commit is contained in:
parent
f01a39adf5
commit
72342c9d3e
1 changed files with 3 additions and 4 deletions
|
@ -223,10 +223,9 @@ function onAccessApproved(desktop_id) {
|
|||
mandatory: {
|
||||
chromeMediaSource: 'desktop',
|
||||
chromeMediaSourceId: desktop_id,
|
||||
minWidth: 1280,
|
||||
maxWidth: 1280,
|
||||
minHeight: 720,
|
||||
maxHeight: 720
|
||||
maxHeight: 720,
|
||||
maxFrameRate: 7
|
||||
}
|
||||
}
|
||||
}, gotStream, handleError);
|
||||
|
@ -261,7 +260,7 @@ function startTokboxPublisher(stream) {
|
|||
audioFallbackEnabled: false,
|
||||
audioSource: null,
|
||||
fitMode: 'contain',
|
||||
frameRate: 30,
|
||||
frameRate: 7,
|
||||
height: 720,
|
||||
insertMode: 'append',
|
||||
publishAudio: false,
|
||||
|
|
Loading…
Reference in a new issue