blob: bf9a6ac2aa082be608744ab81185f956155b772e [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
</head>
<body onload="startCapture()">
<script>
async function startCapture()
{
const stream = await navigator.mediaDevices.getUserMedia({audio:true, video: true});
parent.startCapture(stream);
}
</script>
</body>
</html>