Implemented by Stefan Rummer - (work in progress)
Based on doppelgunner's Audio-React-Recorder
- Managing access to your microphone via the browser's Media-API
- Record, playback and revert audio-captures within the streamlit app
- Download the final recording to your local system (WAV, 16bit, 44kHz)
- NEW: Directly return audio recording-data to Python backend! (arrayBuffer)
- Copy the folder "st_audiorec" to the top level directory of your streamlit project
- Import "os", "streamlit as st" and "streamlit.components.v1 as components"
import os
import streamlit as st
import streamlit.components.v1 as components
- Initialize path variables and declare the custom component using the given name
parent_dir = os.path.dirname(os.path.abspath(__file__))
build_dir = os.path.join(parent_dir, "st_audiorec/frontend/build")
st_audiorec = components.declare_component("st_audiorec", path=build_dir)
- Create an instance of "streamlit-audio-recorder" and record client audio data! 🎈
st_audiorec()