Skip to content

Instantly share code, notes, and snippets.

@rocioDEV
Created February 28, 2020 08:43
Show Gist options
  • Save rocioDEV/c2b23b5dba173a4305df7254de220189 to your computer and use it in GitHub Desktop.
Save rocioDEV/c2b23b5dba173a4305df7254de220189 to your computer and use it in GitHub Desktop.
ml5-getUserMedia
navigator.mediaDevices
.getUserMedia({
video: true
})
.then(function(mediaStream) {
const video = document.querySelector('video')
video.srcObject = mediaStream
})
.catch(function(err) {
console.warn('Error accessing camera')
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment