Capture Image And Audio HTML5

< video autoplay > < /video>

[removed]
const constraints = {
  video: true
};

const video = document.querySelector('video');

navigator.mediaDevices.getUserMedia(constraints).
then((stream) => {
  video.srcObject = stream
});
[removed]