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

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 2 01:58:38 PDT 2020


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

Ribero <mlcontact at icloud.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mlcontact at icloud.com

--- Comment #25 from Ribero <mlcontact at icloud.com> ---
Same situation in my context running:

(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);
  }
})();

with: 

MacBook Pro (Retina, mid-2012), macOS 10.14.6 / Safari 13.1 and 13.1.1 :

[Log] Capabilities: {
  "width": {
    "max": 1280,
    "min": 1
  },
  "height": {
    "max": 720,
    "min": 1
  }
}
[Log] Settings: {
  "width": 640,
  "height": 480
}

iMac (Retina 4K, 21.5-inch, 2017), macOS 10.14.6 / Safari 13.1 and 13.1.1:

[Log] Capabilities: {
  "width": {
    "max": 1280,
    "min": 1
  },
  "height": {
    "max": 720,
    "min": 1
  }
}
[Log] Settings: {
  "width": 640,
  "height": 480
}

and with an antique Mac Pro (beginning 2008), macOS 10.13.6 (17G66), Safari 13.0.4 (13608.4.9.1.4) + iSight :

[Log] Capabilities: {
  "width": {
    "max": 640,
    "min": 1
  },
  "height": {
    "max": 480,
    "min": 1
  }
}
[Log] Settings: {
  "width": 640,
  "height": 480
}

-- 
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/20200602/733edf26/attachment.htm>


More information about the webkit-unassigned mailing list