Skip to content

Instantly share code, notes, and snippets.

@erangamapa
Created May 14, 2016 08:58
Show Gist options
  • Save erangamapa/8b96e814bad6933ab1c9962f38e88777 to your computer and use it in GitHub Desktop.
Save erangamapa/8b96e814bad6933ab1c9962f38e88777 to your computer and use it in GitHub Desktop.
function getUserMediaSuccess(stream) {
localStream = stream;
localVideo.src = window.URL.createObjectURL(stream);
}
function getUserMediaError(error) {
console.log(error);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment