Questions tagged [web-mediarecorder]

Check out our innovative web API designed for capturing and storing audio as well as video streams.

Tips on saving an audio file to a Node server using blob or FormData

I am currently working on a project where I have a MedaRecroder stream recorded in audio/webm format. The stream is sent to a Node server, and while the file appears in the response under req.files, there seem to be encoding errors when playing it back. M ...

Recording audio with Next JS is a breeze

I'm currently working on incorporating audio recording into my Next JS app and could use some guidance. I found a helpful resource at: At this stage, I have the following code snippet: ... const mrRef = useRef(null); ... mediaRecorder = new MediaReco ...