MediaTrackSupportedConstraints: echoCancellation 属性
MediaTrackSupportedConstraints
字典的 **echoCancellation
** 属性是一个只读布尔值,它存在于 MediaDevices.getSupportedConstraints()
返回的对象中(并设置为 true
),当且仅当 用户代理 支持 echoCancellation
约束。 如果不支持约束,它不会包含在列表中,因此此值永远不会为 false
。
可以通过调用 navigator.mediaDevices.getSupportedConstraints()
来访问受支持的约束字典。
值
如果用户代理支持 echoCancellation
约束,则此属性存在于字典中(其值始终为 true
)。 如果属性不存在,则该属性将从受支持的约束字典中丢失,并且如果尝试查看其值,则将获得 undefined
。
示例
js
const result = document.getElementById("result");
const supported =
navigator.mediaDevices.getSupportedConstraints().echoCancellation;
result.textContent = supported ? "Supported!" : "Not supported!";
结果
规范
规范 |
---|
媒体捕获和流 # dom-mediatrackconstraintset-echocancellation |
浏览器兼容性
BCD 表格仅在浏览器中加载