Skip to content

Instantly share code, notes, and snippets.

@burgwyn
Created February 24, 2019 04:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Basic HTML5 Video
<video id="vid" autoplay />
// get the video element
const vid = document.getElementById("vid");
// request the video stream
navigator.mediaDevices.getUserMedia({
video: true
}).then((stream) => {
// pass stream to video element
vid.srcObject = stream;
}).catch(ex => {
console.error(ex.message);
});
video {
border: 1px solid black;
height: 300px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment