使用 navigator.mediaDevices.getUserMedia 检查 JavaScript 中的主显示器
我想通过浏览器捕获主监视器。我尝试这样做:
navigator.mediaDevices.getDisplayMedia({
video: {
displaySurface: 'monitor',
logicalSurface: true,
cursor: 'always',
frameRate: {
ideal: 20
}
}
})
接下来,用户选择他要广播的屏幕。我想检查用户是否已选择主监视器(如果有多个)。我怎样才能做到这一点?谢谢。
I want to capture the main monitor by the browser. I'm trying to do it like this:
navigator.mediaDevices.getDisplayMedia({
video: {
displaySurface: 'monitor',
logicalSurface: true,
cursor: 'always',
frameRate: {
ideal: 20
}
}
})
Next, the user chooses which screen he will broadcast. I want to check that the user has selected the main monitor (in case there are several). How i can do this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过检查
displaySurface
。By checking
displaySurface
.