Recorder.js
An easy to use audio recorder with on Matt Diamond's
recorderjs at the core.
Installation
yarn add recorder-js # or npm install recorder-js --save
Usage
import Recorder from 'recorder-js';
const audioContext = new (window.AudioContext || window.webkitAudioContext)();
const recorder = new Recorder(audioContext, {
onAnalysed: data => console.log(data),
});
let isRecording = false;
let blob = null;
navigator.mediaDevices.getUserMedia({audio: true})
.then(stream => recorder.init(stream))
.catch(err => console.log('Uh oh... unable to get stream...', err));
function startRecording() {
recorder.start()
.then(() => isRecording = true));
}
function stopRecording() {
recorder.stop()
.then(({blob, buffer}) => {
blob = blob;
}));
}
function download() {
Recorder.download(blob, 'my-audio-file');
}
Cool stuff that helped me out