MediaDevices.getSupportedConstraints() - Web APIs 编辑
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.
Syntax
var supportedConstraints = navigator.mediaDevices.getSupportedConstraints();
Parameters
None.
Return value
A 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
.
Example
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;
}
JavaScript
let constraintList = document.getElementById("constraintList");
let supportedConstraints = navigator.mediaDevices.getSupportedConstraints();
for (let constraint in supportedConstraints) {
if (supportedConstraints.hasOwnProperty(constraint)) {
let elem = document.createElement("li");
elem.innerHTML = "<code>" + constraint + "</code>";
constraintList.appendChild(elem);
}
}
Result
Specifications
Specification | Status | Comment |
---|---|---|
Media Capture and Streams The definition of 'getSupportedConstraints()' in that specification. | Candidate Recommendation | Initial definition. |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论