1.0.1 • Published 2 years ago

kanari-recorder v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Installation Guide

Using npm

npm install kanari-recorder

Using yarn

yarn add kanari-recorder

import

//ES6

import Recorder from 'kanari-recorder';

//common js

const Recorder = require('kanari-recorder');

initiliaze Recorder and start recording

Recorder.startRecording(inputStream,audioProcessor);

fetch or get the Blob

var Blob = await Recorder.fetchBlob();

to stop recording

Recorder.stopRecording();

to resume recording

Recorder.resumeRecording();