Skip to content

Instantly share code, notes, and snippets.

@kypflug
Created June 11, 2015 22:03
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/3a73cddf9ddf8a171923 to your computer and use it in GitHub Desktop.
Save kypflug/3a73cddf9ddf8a171923 to your computer and use it in GitHub Desktop.
var video = document.getElementById('videoTag');
if (typeof(video.srcObject) != "undefined") {
video.srcObject = stream;
}
else {
video.src = URL.createObjectURL(stream);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment