You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, first of all, thanks a million for this project! It's saved me a lot of pain and I've begun using it on my site. There's just one issue that I noticed: while the first recording is flawless, every other recording that follows will be plain silence, if the same recorder object is used. This seems to apply to all wav, mp3 and ogg files. This happens in my own project as well as in the example in the repo. Any idea what might be causing this? I use Firefox 42.0.
The text was updated successfully, but these errors were encountered:
Thanks for responding. If I clone the repository, point my browser to example/index.html, and make a number of recordings, then only the first mp3/ogg contains any sound. The remaining files are silent. Nothing shows up in the console. Replacing exportMP3() for exportWAV() yields the same (nothing). Can you reproduce this?
Not sure if it's the same problem, but due to a bug in Firefox, the audio source created by the navigator.getUserMedia call gets garbage collected. Here is a workaround to use inside the callback.
var stream = audio_context.createMediaStreamSource(stream);
callback(new RecorderObject(stream, cfg));
window.source = stream;
Hi, first of all, thanks a million for this project! It's saved me a lot of pain and I've begun using it on my site. There's just one issue that I noticed: while the first recording is flawless, every other recording that follows will be plain silence, if the same recorder object is used. This seems to apply to all wav, mp3 and ogg files. This happens in my own project as well as in the example in the repo. Any idea what might be causing this? I use Firefox 42.0.
The text was updated successfully, but these errors were encountered: