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
I am using recorder.js for recording audio in my application.
I need to send the audio file to the server as the user has stopped speaking.
Is there any way in this library by which I can detect auto pause in recording and send the audio to server?
The text was updated successfully, but these errors were encountered:
You can try below link i think it helpful for you. but note it working in only chrome browser. https://jsfiddle.net/53watgqu/
To use the script with other browser. You just have to replace the AudioContext declaration with this:
var AudioContext = window.AudioContext // Default || window.webkitAudioContext // Safari and old versions of Chrome || false; const ctx = new AudioContext;
I am using recorder.js for recording audio in my application.
I need to send the audio file to the server as the user has stopped speaking.
Is there any way in this library by which I can detect auto pause in recording and send the audio to server?
The text was updated successfully, but these errors were encountered: