[Webkit-unassigned] [Bug 210932] getUserMedia returns OverConstrained on Jitsi

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed May 6 10:34:27 PDT 2020


https://bugs.webkit.org/show_bug.cgi?id=210932

--- Comment #24 from Philippe Normand <pnormand at igalia.com> ---
This yields no result in Safari TP:

(async () => {
  for (let w = 1280; w > 0; w -= 10) {
    for (let h = 720; h > 0; h -= 10) {
      try {
        let stream = await navigator.mediaDevices.getUserMedia({
          video: {
            width: {
              "min": w,
              "max": 1280,
              "ideal": w
            },
            height: {
              "min": h,
              "max": 720,
              "ideal": h
            }
          }
        });
        console.log("Success " + w + "x" + h);
      } catch (err) {}
    }
  }
  console.log("Done");
})();

-- 
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/20200506/09ad9fbe/attachment-0001.htm>


More information about the webkit-unassigned mailing list