Skip to content

This (react-voice-recorder) is a JavaScript library for React Applicaiton which will be used to record voice as audio and download the same.

License

Notifications You must be signed in to change notification settings

Cchumi/react-voice-recorder

 
 

Repository files navigation

NPM

react-voice-recorder

This (react-voice-recorder) is a JavaScript library for React Applicaiton which will be used to record voice as audio and download the same.

Demo

Checkout the Demo

Installation

npm i react-voice-recorder //This will download the latest version of Module.

Import in your project file

import {Recorder} from 'react-voice-recorder'

Declare inside the render menthod

this.state = {
    audioDetails: {
        url: null,
        blob: null,
        chunks: null,
        duration: {
          h: 0,
          m: 0,
          s: 0
        }
      }
}
handleAudioStop(data){
    console.log(data)
    this.setState({ audioDetails: data });
}
handleAudioUpload(file) {
    console.log(file);
}
handleRest() {
    const reset = {
      url: null,
      blob: null,
      chunks: null,
      duration: {
        h: 0,
        m: 0,
        s: 0
      }
    };
    this.setState({ audioDetails: reset });
  }

<Recorder
    record={true}
    title={"New recording"}
    audioURL={this.state.audioDetails.url}
    showUIAudio
    handleAudioStop={data => this.handleAudioStop(data)}
    handleAudioUpload={data => this.handleAudioUpload(data)}
    handleRest={() => this.handleRest()} 
/>

Props

Common props you may want to specify include:

  • record - Flag
  • title - Title for the Model
  • audioURL - To hear what has been recorded.
  • showUIAudio - Either need to show HTML5 audio tag after stopped or not.
  • handleAudioStop - Once your are stop the record, this will send your the data to process. further
  • handleAudioUpload - Onced click the upload button, Blob will be passed via props

License

MIT Licensed.

About

This (react-voice-recorder) is a JavaScript library for React Applicaiton which will be used to record voice as audio and download the same.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 73.3%
  • CSS 26.7%