简体   繁体   中英

Converting MediaRecorder audio to base64

I am using the MediaRecorder API to record audio on my page.

I need to convert this audio to base64.

Have a look at this example .

Each time new data is available, it pushes that data to an array, like this:

function handleDataAvailable(event) {
  if (event.data && event.data.size > 0) {
    recordedBlobs.push(event.data);
  }
}

Then, it combines all that data like this:

var superBuffer = new Blob(recordedBlobs, {type: 'video/webm'});

So how would I convert this superBuffer to base64?

You can do this using FileReader Object.

var reader = new window.FileReader();
reader.readAsDataURL(superBuffer); 
reader.onloadend = function() {
   base64 = reader.result;
   base64 = base64.split(',')[1];
   console.log(base64 );
}

Answer referred from Convert blob to base64 .

Read more about FileReader for better understanding.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM