Update app.py
Browse files
app.py
CHANGED
@@ -8,9 +8,9 @@ import streamlit as st
|
|
8 |
from audio2text.a2t import A2T
|
9 |
from st_audiorec import st_audiorec
|
10 |
|
11 |
-
audio = st_audiorec
|
12 |
-
|
13 |
def main():
|
|
|
|
|
14 |
if audio is not None:
|
15 |
print(type(audio))
|
16 |
if st.button("Get text"):
|
|
|
8 |
from audio2text.a2t import A2T
|
9 |
from st_audiorec import st_audiorec
|
10 |
|
|
|
|
|
11 |
def main():
|
12 |
+
audio = st_audiorec()
|
13 |
+
|
14 |
if audio is not None:
|
15 |
print(type(audio))
|
16 |
if st.button("Get text"):
|