🚀 DAY 2 OF LAUNCH WEEK: Unify Your Security Stack with Socket Basics.Learn more →
Socket
Book a DemoInstallSign in
Socket

@kazzkiq/audio-react-recorder

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kazzkiq/audio-react-recorder

Audio / Voice Recorder for React

latest
Source
npmnpm
Version
1.0.3
Version published
Maintainers
1
Created
Source

audio-react-recorder

Audio / Voice Recorder w/ Audio Wave for React using the Web Audio API

NPM JavaScript Style Guide

Install

npm install --save audio-react-recorder

DEMO

AudioReactRecorder demo

Usage

import React, { Component } from 'react'

import AudioReactRecorder, { RecordState } from 'audio-react-recorder'

class App extends Component {
  constructor(props) {
    super(props)

    this.state = {
      recordState: null
    }
  }

  start = () => {
    this.setState({
      recordState: RecordState.START
    })
  }

  stop = () => {
    this.setState({
      recordState: RecordState.STOP
    })
  }

  //audioData contains blob and blobUrl
  onStop = (audioData) => {
    console.log('audioData', audioData)
  }

  render() {
    const { recordState } = this.state

    return (
      <div>
        <AudioReactRecorder state={recordState} onStop={this.onStop} />

        <button onClick={this.start}>Start</button>
        <button onClick={this.stop}>Stop</button>
      </div>
    )
  }
}

Supported props

Property nameTypeDefaultDescription
statestringRecordState.NONERecordState.(NONE,START,STOP,PAUSE)
typestringaudio/wavMIME type of the audio file
backgroundColorstringrgb(200, 200, 200)Background color of the audio wave / canvas
foregroundColorstringrgb(0, 0, 0)Foreground color of the audio wave / canvas
canvasWidthnumber,string500Canvas width (you can use css to make it responsive)
canvasHeightnumber,string300canvas height

License

MIT © noobieprogrammer

Buy me a coffee or just follow me

paypal

Keywords

react

FAQs

Package last updated on 22 Jun 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts