
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
@kazzkiq/audio-react-recorder
Advanced tools
Audio / Voice Recorder w/ Audio Wave for React using the Web Audio API
npm install --save audio-react-recorder
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>
)
}
}
Property name | Type | Default | Description |
---|---|---|---|
state | string | RecordState.NONE | RecordState.(NONE,START,STOP,PAUSE) |
type | string | audio/wav | MIME type of the audio file |
backgroundColor | string | rgb(200, 200, 200) | Background color of the audio wave / canvas |
foregroundColor | string | rgb(0, 0, 0) | Foreground color of the audio wave / canvas |
canvasWidth | number,string | 500 | Canvas width (you can use css to make it responsive) |
canvasHeight | number,string | 300 | canvas height |
MIT © noobieprogrammer
FAQs
Audio / Voice Recorder for React
We found that @kazzkiq/audio-react-recorder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.