作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 JS 从网络摄像头获取视频,但没有镜头。
消息:
DOMException: Could not start video source
App.js
const video = document.getElementById("video");
function startVideo() {
navigator.getUserMedia(
{
video: {}
},
stream => (video.srcObject = stream),
err => console.log(err)
);
}
startVideo();
index.html
...
<body>
<video id="video" width="720" height="540" autoplay muted></video>
</body>
...
感谢您的帮助
最佳答案
如果其他人也遇到此问题并且没有其他方法可以帮助。确保您的相机尚未被其他软件/浏览器认领/使用。
关于javascript - JS 视频 | DOM异常: Could not start video source,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60837628/
我是一名优秀的程序员,十分优秀!