File size: 241 Bytes
1726dba
b692f4a
1726dba
b692f4a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import streamlit as st
from st_audiorec import st_audiorec

# x = st.slider('Select a value')
# st.write(x, 'squared is', x * x)

wav_audio_data = st_audiorec()

if wav_audio_data is not None:
    st.audio(wav_audio_data, format='audio/wav')