1.3.7 • Published 3 years ago
react-recorder-voice v1.3.7
Installation
npm i react-recorder-voice
or
yarn add react-recorder-voice
Usage
React
import { useRecorder } from "react-recorder-voice";
function App() {
const {
audioURL,
audioData,
timer,
recordingStatus,
cancelRecording,
saveRecordedAudio,
startRecording,
} = useRecorder();
return (
<div>
<button onClick={startRecording}>Start</button>
<button onClick={cancelRecording}>Cancel</button>
<button onClick={saveRecordedAudio}>Stop and Save</button>
<audio controls src={audioURL}></audio>
<h1>{timer}</h1>
</div>
);
}
export default App;
Options / Props | Description |
---|---|
audioURL | gives you recorded audio URL you can put this URL in src of audio tag |
audioData | gives you recorded audio data for use or send with API or ... |
timer | gives you a time for showing to user |
recordingStatus | gives you status of recording for example => recording or cancel |
cancelRecording | with this method you can cancel recording |
saveRecordedAudio | with this method you can save recording |
startRecording | with this method you can start recording |
Contributing
ّّIf you find a bug, just let me know or submit a pull request
Thanks.
1.3.7
3 years ago
1.3.6
3 years ago
1.3.5
3 years ago
1.3.4
3 years ago
1.3.3
3 years ago
1.3.1
3 years ago
1.3.0
3 years ago
1.2.9
3 years ago
1.2.8
3 years ago
1.2.7
3 years ago
1.2.6
3 years ago
1.2.5
3 years ago
1.2.4
3 years ago
1.2.3
3 years ago
1.2.2
3 years ago
1.2.1
3 years ago
1.1.9
3 years ago
1.1.8
3 years ago
1.1.7
3 years ago
1.1.6
3 years ago
1.1.5
3 years ago
1.1.4
3 years ago
1.1.3
3 years ago
1.1.2
3 years ago
1.1.1
3 years ago
1.1.0
3 years ago
1.0.9
3 years ago
1.0.8
3 years ago
1.0.7
3 years ago
1.0.6
3 years ago
1.0.5
3 years ago
1.0.4
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago