Skip to content

Instantly share code, notes, and snippets.

@Rahmanism
Last active October 9, 2019 13:40
Show Gist options
  • Save Rahmanism/7ad12ebc198ff9ea3621ce55bb26a809 to your computer and use it in GitHub Desktop.
Save Rahmanism/7ad12ebc198ff9ea3621ce55bb26a809 to your computer and use it in GitHub Desktop.
View web cam using JavaScript
<video id="video1" autoplay></video>
<script type="text/javascript">
const v = document.getElementById('video1');
function startVideo() {
navigator.getUserMedia(
{ video: {}, audio: {} },
stream => v.srcObject = stream,
err => console.error(err)
)
}
startVideo();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment