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