Constrain screensharing in getDisplayMedia

This commit is contained in:
Håvar Aambø Fosstveit
2020-03-18 10:07:15 +01:00
parent 023aac3c21
commit fd58940916
2 changed files with 18 additions and 5 deletions
+3 -3
View File
@@ -2484,9 +2484,9 @@ export default class RoomClient
logger.debug('enableScreenSharing() | calling getUserMedia()');
const stream = await this._screenSharing.start({
width : 1280,
height : 720,
frameRate : 3
width : 1920,
height : 1080,
frameRate : 5
});
track = stream.getVideoTracks()[0];
+15 -2
View File
@@ -101,12 +101,25 @@ class DisplayMediaScreenShare
return true;
}
_toConstraints()
_toConstraints(options)
{
const constraints = {
video : true
video : {}
};
if (isFinite(options.width))
{
constraints.video.width = options.width;
}
if (isFinite(options.height))
{
constraints.video.height = options.height;
}
if (isFinite(options.frameRate))
{
constraints.video.frameRate = options.frameRate;
}
return constraints;
}
}