Guest User

Untitled

a guest
Dec 28th, 2024
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | Software | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Webcam Test</title>
  7.     <style>
  8.         video {
  9.             width: 100%;
  10.             height: auto;
  11.             border: 2px solid black;
  12.         }
  13.     </style>
  14. </head>
  15. <body>
  16.     <h1>Live Feed</h1>
  17.     <video id="webcam" autoplay></video>
  18.     <script>
  19.         async function startWebcam() {
  20.             const video = document.getElementById('webcam');
  21.             try {
  22.                 const stream = await navigator.mediaDevices.getUserMedia({ video: true });
  23.                 video.srcObject = stream;
  24.             } catch (error) {
  25.                 console.error('Error accessing the webcam: ', error);
  26.             }
  27.         }
  28.         window.onload = startWebcam;
  29.     </script>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment