Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Screen Sharing Web</title> | |
</head> | |
<body> | |
<video id="screenVideo" autoplay playsinline controls></video> | |
<script> | |
navigator.mediaDevices.getDisplayMedia({ video: true, audio: true }) | |
.then(stream => { | |
const videoElement = document.getElementById("screenVideo"); | |
videoElement.srcObject = stream; | |
stream.getVideoTracks()[0].onended = () => { | |
videoElement.srcObject = null; | |
}; | |
}) | |
.catch(error => { | |
alert("Screen sharing failed: " + error.message); | |
}); | |
</script> | |
</body> | |
</html> |