Skip to content

Instantly share code, notes, and snippets.

@gasp
Forked from kypflug/ortc-1.js
Created November 28, 2015 10:41
Show Gist options
  • Save gasp/7128144af5d139aced6d to your computer and use it in GitHub Desktop.
Save gasp/7128144af5d139aced6d to your computer and use it in GitHub Desktop.
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