1594136.html (330B)
1 <html> 2 <head> 3 <script> 4 function start () { 5 const context = new AudioContext(); 6 const {stream} = new MediaStreamAudioDestinationNode(context); 7 const [track] = stream.getTracks(); 8 track.stop(); 9 context.createMediaStreamTrackSource(track); 10 } 11 12 document.addEventListener('DOMContentLoaded', start); 13 </script> 14 </head> 15 </html>