[Webkit-unassigned] [Bug 210932] getUserMedia returns OverConstrained on Jitsi
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Apr 24 13:51:39 PDT 2020
https://bugs.webkit.org/show_bug.cgi?id=210932
--- Comment #18 from Eric Carlson <eric.carlson at apple.com> ---
What does this produce:
(async () => {
try {
const filter = ({width, height}) => ({width, height});
const stream = await navigator.mediaDevices.getUserMedia({video:{}});
const [track] = stream.getVideoTracks();
console.log(`Capabilities: ${JSON.stringify(filter(track.getCapabilities()), null, 2)}`);
console.log(`Settings: ${JSON.stringify(filter(track.getSettings()), null, 2)}`);
} catch(e) {
console.log(e);
}
})();
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20200424/b8b5f9c0/attachment.htm>
More information about the webkit-unassigned
mailing list