closeio / mic-recorder-to-mp3

Microphone Recorder to mp3
MIT License
238 stars 130 forks source link

How to save mp3 file? #4

Closed esledov closed 5 years ago

esledov commented 5 years ago

Hi,

Could you please provide an example on how to save recorded mp3 file to a local drive? (I am trying to use it from Electron app).

Thank you.

esledov commented 5 years ago

I figured it out, I think.

function saveToFile(fname, buffer) {

  const arr = [];

  for (i = 0; i < buffer.length; i++) {
    arr.push(Buffer.from(buffer[i]));
  }

  fs.writeFileSync(fname, Buffer.concat(arr), 'binary');

}
buzinas commented 5 years ago

Closing for inactivity.