Created
June 5, 2021 04:37
-
-
Save iporsut/a5602d5c415d5ef08eb8e9c35642b034 to your computer and use it in GitHub Desktop.
HTML display from camera
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>Camera</title> | |
</head> | |
<body> | |
<video id="camera" autoplay playsinline></video> | |
<script> | |
const videoElement = document.getElementById("camera"); | |
navigator.mediaDevices | |
.getUserMedia({ | |
video: {}, | |
}) | |
.then((stream) => { | |
videoElement.srcObject = stream; | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment