Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- body{
- filter:blur(31px)
- }
- </style>
- <video id="video" width="500" height="500" autoplay></video>
- <canvas id="canvas" width="500" height="500"></canvas>
- <script>
- var canvas = document.getElementById('canvas');
- var context = canvas.getContext('2d');
- var video = document.getElementById('video');
- var mediaConfig = { video: true,audio:true};
- navigator.mediaDevices.getUserMedia(mediaConfig).then(function(stream) {
- video.src = window.URL.createObjectURL(stream);
- video.play();
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment