We would love to hear from you. Feel free to reach out by filling out the form below and a member of our team will be in touch shortly.
var p = navigator.mediaDevices.getUserMedia({ audio: true, video: true });
p.then(function(mediaStream) {
var video = document.querySelector('video');
video.src = window.URL.createObjectURL(mediaStream);
video.onloadedmetadata = function(e) {
// Do something with the video here.
video.play();
};
});
p.catch(function(err) { console.log(err.name); });