Chelsea / app.py
CineAI's picture
Update app.py
8d0d579 verified
raw
history blame
232 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:
print(wav_audio_data)
if __name__ == "__main__":
main()