I want to know more about getScreenDeviceIdWoExtension function in Web SDK

Bob Hwang

New Member
//for chrome
var getScreenDeviceIdWoExtension = function (constraints) {
return new Promise(function (resolve, reject) {
//WCS-1952. exact constraints are not supported.
//WCS-1986. added audio: true to constraints.
resolve({
video: true,
audio: true
});
});
};

Does WCS-1952 mean that Flashphoner ignores user constraints when using screen sharing?
 

Max

Administrator
Staff member
Good day.
Google Chrome has some limits, when you use screen sharing. They are listed in the documentation:
Code:
Picture resolution is set by source dimensions (screen, windows or browser tab), not by constraints
 
Last edited:
Top