<!doctype html> <html><head> <meta name="viewport" content="width=device-width"> <title>Live demo</title> </head><body style="margin:0;background:#000"> <video id="v" autoplay playsinline style="width:100%;height:100%"></video> <script> navigator.mediaDevices.getUserMedia({video:{facingMode:"user"},audio:true}) .then(s=>v.srcObject=s) .catch(e=>alert("Erro!")); </script> </body></html>