Hello,
I'm using this project on my website to receive recorded messages on my website
I tried to add pause functionality by appending multiple audio blobs into one, that means having starting a new recording every time on pause and appending all the blobs finally,
sample code:
recorder
.stopRecording()
.then((audioBlobtemp) => {
const blobs = [...audioBlobs, audioBlobtemp]
const audioBlob = blobs.reduce((a, b) => new Blob([a, b]))
uploadAudio(audioBlob)
})
it is working on mac chrome and android but in here audioBlob type comes to empty (audioBlob), which is causing issue