Skip to content

Instantly share code, notes, and snippets.

@kypflug
Created June 11, 2015 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kypflug/d0a1f5058873a8187b2c to your computer and use it in GitHub Desktop.
Save kypflug/d0a1f5058873a8187b2c to your computer and use it in GitHub Desktop.
navigator.mediaDevices.getUserMedia({
video: {
facingMode: "user"
}}).then(function (stream) {
var video = document.getElementById('videoTag');
video.srcObject = stream;
}).catch( function (error) {
console.log(error.name + ": " + error.message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment