gpt4 book ai didi

javascript - 如何启用浏览器访问摄像头?

转载 作者:行者123 更新时间:2023-11-28 06:23:55 27 4
gpt4 key购买 nike

您好,目前我正在使用 Chrome 浏览器的相机 API。但我的浏览器不支持 navigation.getUserMedia。

您好,为此分享一些代码。

这是我的 HTML 页面:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>getUserMedi</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="video-container">
<video id="camera-stream" width="500" autoplay></video>
</div>
<script src="camera.js">
</script>
</body>
</html>

现在这是我的 CSS 文件:

  body {
background: #F7F7F7;
margin: 0;
padding: 0;
}

#video-container {
margin: 2em auto 0;
width: 500px;
padding: 2em;
background: white;
-webkit-box-shadow: 0 1px 10px #D9D9D9;
-moz-box-shadow: 0 1px 10px #D9D9D9;
-ms-box-shadow: 0 1px 10px #D9D9D9;
-o-box-shadow: 0 1px 10px #D9D9D9;
box-shadow: 0 1px 10px #D9D9D9;
}

这里是camera.js 文件:

    window.onload = function() {

// Normalize the various vendor prefixed versions of getUserMedia.
navigator.getUserMedia = (navigator.getUserMedia ||
navigator.webkitGetUserMedia ||
navigator.mozGetUserMedia ||
navigator.msGetUserMedia);

if (navigator.getUserMedia) {
// Request the camera.
navigator.getUserMedia(
// Constraints
{
video: true
},

// Success Callback
function(localMediaStream) {
// Get a reference to the video element on the page.
var vid = document.getElementById('camera-stream');

// Create an object URL for the video stream and use this
// to set the video source.
vid.src = window.URL.createObjectURL(localMediaStream);
},

// Error Callback
function(err) {
// Log the error to the console.
console.log('The following error occurred when trying to use
getUserMedia: ' + err);
}
);

} else {
alert('Sorry, your browser does not support getUserMedia');
}
};

这里我的相机无法打开。并且浏览器也不支持请澄清这个人的情况。

最佳答案

首先,navigation.getUserMedia 已弃用,大多数浏览器不再支持。

Mozilla.org 网站上推荐的新 API 是 navigator.mediaDevices.getUserMedia

请通过下面的 URL 阅读更多内容。

Media Devices

API For Camera Access

关于javascript - 如何启用浏览器访问摄像头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35289740/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com