Socket
Socket
Sign inDemoInstall

react-tune-trace

Package Overview
Dependencies
6
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-tune-trace

Audio / Voice Recorder for React


Version published
Weekly downloads
5
Maintainers
1
Install size
269 kB
Created
Weekly downloads
 

Readme

Source

react-tune-trace

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

NPM JavaScript Style Guide

Install

npm install --save react-tune-trace

Usage

import React, { Component } from 'react'

import AudioReactRecorder, { RecordState } from 'react-tune-trace'

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/oggOgg type support in this version
backgroundColorstringrgb(200, 200, 200)Background color of the audio ogge / canvas
foregroundColorstringrgb(0, 0, 0)Foreground color of the audio ogge / canvas
canvasWidthnumber,string500Canvas width (you can use css to make it responsive)
canvasHeightnumber,string300canvas height

License

MIT © pariazar

Keywords

FAQs

Last updated on 08 Oct 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc