Back to Content

MediaDevices: getSupportedConstraints() method

files/en-us/web/api/mediadevices/getsupportedconstraints/index.md

latest1.5 KB
Original Source

{{APIRef("Media Capture and Streams")}}{{SecureContext_Header}}

The getSupportedConstraints() method of the {{domxref("MediaDevices")}} interface returns an object based on the {{domxref("MediaTrackSupportedConstraints")}} dictionary, whose member fields each specify one of the constrainable properties the {{Glossary("user agent")}} understands.

Syntax

js-nolint
getSupportedConstraints()

Parameters

None.

Return value

A new object based on the {{domxref("MediaTrackSupportedConstraints")}} dictionary listing the constraints supported by the user agent. Because only constraints supported by the user agent are included in the list, each of these Boolean properties has the value true.

Examples

This example outputs a list of the constraints supported by your browser.

html
<p>The following media constraints are supported by your browser:</p>

<ul id="constraintList"></ul>
css
body {
  font:
    15px "Arial",
    sans-serif;
}
js
const constraintList = document.querySelector("#constraintList");
const supportedConstraints = navigator.mediaDevices.getSupportedConstraints();

for (const constraint of Object.keys(supportedConstraints)) {
  const elem = document.createElement("li");
  elem.appendChild(document.createElement("code")).textContent = constraint;
  constraintList.appendChild(elem);
}

Result

{{ EmbedLiveSample('Examples', 600, 350) }}

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}