Last active
July 27, 2020 08:46
-
-
Save bourdakos1/74b205b7da40b8cd6d54eaecad16ee59 to your computer and use it in GitHub Desktop.
This file contains 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
const video = document.getElementById("video") | |
navigator.mediaDevices | |
.getUserMedia({ | |
audio: false, | |
video: { | |
facingMode: "user", | |
width: 600, | |
height: 500 | |
} | |
}) | |
.then(stream => { | |
video.srcObject = stream | |
video.onloadedmetadata = () => { | |
video.play() | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment