Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Webcam Test</title>
- <style>
- video {
- width: 100%;
- height: auto;
- border: 2px solid black;
- }
- </style>
- </head>
- <body>
- <h1>Live Feed</h1>
- <video id="webcam" autoplay></video>
- <script>
- async function startWebcam() {
- const video = document.getElementById('webcam');
- try {
- const stream = await navigator.mediaDevices.getUserMedia({ video: true });
- video.srcObject = stream;
- } catch (error) {
- console.error('Error accessing the webcam: ', error);
- }
- }
- window.onload = startWebcam;
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment