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'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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: