1569645.html (598B)
1 <html> 2 <head> 3 <script> 4 function start () { 5 const canvas = document.getElementById("c") 6 canvas.getContext("2d") 7 const video = canvas.captureStream() 8 const ac = new AudioContext() 9 const dest = ac.createMediaStreamDestination() 10 const recorder = new MediaRecorder( 11 new MediaStream([...video.getTracks(), ...dest.stream.getTracks()]), { 12 'mimeType': 'audio/ogg' 13 }) 14 recorder.start() 15 } 16 17 window.addEventListener('load', start) 18 </script> 19 </head> 20 <body> 21 <canvas id="c"></canvas> 22 </body> 23 </html>