Chelsea / app.py
CineAI's picture
Update app.py
11552f2 verified
raw
history blame
235 Bytes
import numpy as np
import streamlit as st
from st_audiorec import st_audiorec
def main():
wav_audio_data = st_audiorec()
if wav_audio_data is not None:
st.write(wav_audio_data)
if __name__ == "__main__":
main()