Baseline Widely available
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
The getSupportedConstraints()
method of the MediaDevices
interface returns an object based on the MediaTrackSupportedConstraints
dictionary, whose member fields each specify one of the constrainable properties the user agent understands.
getSupportedConstraints()
Parameters
None.
Return valueA new object based on the 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
.
This example outputs a list of the constraints supported by your browser.
<p>The following media constraints are supported by your browser:</p>
<ul id="constraintList"></ul>
body {
font:
15px Arial,
sans-serif;
}
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 Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4