Skip to content

Instantly share code, notes, and snippets.

@zer0her0
Created March 13, 2012 15:31
Show Gist options
  • Select an option

  • Save zer0her0/2029422 to your computer and use it in GitHub Desktop.

Select an option

Save zer0her0/2029422 to your computer and use it in GitHub Desktop.
simple live video from webcam
<html>
<video autoplay></video>
<script>
var videoTag = document.querySelector("video");
navigator.webkitGetUserMedia("video,audio",
function(stream) {
var url = webkitURL.createObjectURL(stream);
videoTag.src = url;
}
);
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment