Created
September 22, 2019 23:16
-
-
Save wapiflapi/d1f2d0cdfc438d769498b294a79eb090 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head><title>Self Share Screen</title></head> | |
<body><video id="video" autoplay></video></body> | |
<script> | |
navigator.mediaDevices.getDisplayMedia({ | |
video: { cursor: "never" }, | |
audio: false | |
}).then(function (stream) { | |
document.getElementById("video").srcObject = stream; | |
}); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment