Reading MediaRecorder’s webm/opus output

1 · Graham King · July 27, 2018, 7:34 p.m.
Javascript can now record, manipulate and play sound thanks to a whole range of audio-related API’s. One of the simpler and more useful parts of that is MediaRecorder which can record sound, typically from the users’ microphone. const stream = await navigator.mediaDevices .getUserMedia({audio: true, video: false}); // Media Capture and Streams API const mediaRecorder = […]...