Skip to content

Instantly share code, notes, and snippets.

@burgwyn
Created February 24, 2019 04:06
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 burgwyn/360dc6088adb1f65059b137d468fc0a0 to your computer and use it in GitHub Desktop.
Save burgwyn/360dc6088adb1f65059b137d468fc0a0 to your computer and use it in GitHub Desktop.
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