I am using recorder.js to record two audio files on my web page, which then creates recordings as blobs.
Once I have these audio blobs I would like to concatenate them into one track.
How can I do it?
I am using recorder.js to record two audio files on my web page, which then creates recordings as blobs.
Once I have these audio blobs I would like to concatenate them into one track.
How can I do it?
if you save the raw PCM of the orig clips from the callbacks on the buffer of the mic, i think you can just provide array of bufferd Clips to a new blob constructor.
let recordedBlob = new Blob($ArrBuff[clip1,clip2], { type: "audio/*" }); recording.src = URL.createObjectURL(recordedBlob);