-
-
Save kypflug/fdf3a73df416d09e80c7 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
navigator.MediaDevices.getUserMedia ({ | |
"audio": true, | |
"video": { | |
width: 640, | |
height: 360, | |
facingMode: "user" | |
} | |
}).then( | |
gotStream | |
).catch( | |
gotMediaError | |
); | |
function gotStream(stream) { | |
var mediaStreamLocal = stream; | |
… | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I recommend using https://gist.github.com/gasp/7128144af5d139aced6d instead