Recorderjs
Recorderjs copied to clipboard
How to implement Pause functionality while recording using recorder.js
I am using recorder.js to upload user's audio files on our server. Its working properly in chrome and firefox..
http://216.245.194.124/recorduploadsample.com/
In the above sample start, stop and Play functionality are there which is working in chrome and firefox both browsers
But now I want to add "Pause" functionality in this means user should be able to pause while recording and again start after some time...On server only one file should uploaded that having all the content means before and after pause..All should be in one file and that should uploaded on server.
Can anyone help me?
Thanks in Advance
That sounds like you just want to implement a flag to skip adding the buffers.
Yes, Thanks for suggestion...can you suggest any solution or sample code using recorder.js that I can implement in my application.
Actually, the way Matt's structured the code, you don't even need to do this. To "pause" recording, simply call stop(), and then call record() to continue recording - i.e., don't call clear() or getBuffers() in between. That should simply skip recording in between pause and record.
ok..thanks
Thanks a ton...Its working :)
@ankitaagrawal - can you share your code please . and how to save recorded audio direct local not on server.
pls share your code