https://github.com/stefanrmmr/streamlit-audio-recorder
Record Audio from the User's Microphone in Apps that are Deployed to the Web. (via Browser Media-API, REACT-based, Streamlit Custom Component)
https://github.com/stefanrmmr/streamlit-audio-recorder
audio audio-recorder custom-component react-audio-recorder streamlit streamlit-application streamlit-audio-recorder streamlit-component streamlit-components streamlit-custom-component streamlit-webapp
Last synced: about 1 year ago
JSON representation
Record Audio from the User's Microphone in Apps that are Deployed to the Web. (via Browser Media-API, REACT-based, Streamlit Custom Component)
- Host: GitHub
- URL: https://github.com/stefanrmmr/streamlit-audio-recorder
- Owner: stefanrmmr
- License: mit
- Created: 2022-05-04T12:56:39.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-11T17:41:11.000Z (almost 3 years ago)
- Last Synced: 2025-05-13T04:05:12.016Z (about 1 year ago)
- Topics: audio, audio-recorder, custom-component, react-audio-recorder, streamlit, streamlit-application, streamlit-audio-recorder, streamlit-component, streamlit-components, streamlit-custom-component, streamlit-webapp
- Language: TypeScript
- Homepage:
- Size: 54.4 MB
- Stars: 485
- Watchers: 1
- Forks: 92
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Streamlit Audio Recorder
[](https://audiorecorder.streamlit.app/)
[](https://pypi.org/project/streamlit-audiorec/)
[](https://pypi.org/project/streamlit-audiorec/)
[](https://github.com/stefanrmmr/streamlit-audio-recorder/blob/main/LICENCE)
Custom component, implemented by [Stefan Rummer](https://www.linkedin.com/in/stefanrmmr/),
based on [doppelgunner](https://github.com/doppelgunner/audio-react-recorder/) 's [Audio-React-Recorder](https://www.npmjs.com/package/audio-react-recorder/)

## Features & Specs
- Manage access to the user's microphone via the **browser's Media-API**
- Record, playback and revert audio-recordings in apps **deployed to the web**
- Download the final recording to your local system! - **WAV, 16 bit, 44.1 kHz**
- Directly return audio recording-data to Python backend! - **arrayBuffer format**
## Setup & How to Use
**1.** PIP Install the component (download from PyPI)
```
pip install streamlit-audiorec
```
**2.** Import and Initialize the component (at the top of your script)
```python
from st_audiorec import st_audiorec
```
**3.** Add an Instance of the audio recorder to your streamlit app's code.
```python
wav_audio_data = st_audiorec()
if wav_audio_data is not None:
st.audio(wav_audio_data, format='audio/wav')
```
**4. Enjoy recording audio inside your streamlit app! 🎈**
Feel free to reach out to me in case you have any questions!
Pls consider leaving a `star` ☆ with this repository to show your support.