Thank you for your great project. It really helps.
I was indeed able to record audio from the Streamlit app running on my remote server. However, when I stop the recording, two players for the same audio are displayed. Please check the attached image. Is this the default behavior?
My environment
Python 3.8.9
streamlit==1.29.0
streamlit-audiorec==0.1.3
code
import streamlit as st
from st_audiorec import st_audiorec
wav_audio_data = st_audiorec()
if wav_audio_data is not None:
st.audio(wav_audio_data, format='audio/wav')
Hi,
Thank you for your great project. It really helps.
I was indeed able to record audio from the Streamlit app running on my remote server. However, when I stop the recording, two players for the same audio are displayed. Please check the attached image. Is this the default behavior?
My environment
if wav_audio_data is not None: st.audio(wav_audio_data, format='audio/wav')