Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ audio = audiorecorder("Click to record", "Click to stop recording")
|
|
11 |
|
12 |
def main():
|
13 |
if len(audio) > 0:
|
|
|
14 |
if st.button("Get text"):
|
15 |
with st.spinner("Wait for it...."):
|
16 |
a2t = A2T(audio)
|
|
|
11 |
|
12 |
def main():
|
13 |
if len(audio) > 0:
|
14 |
+
st.audio(audio.export().read())
|
15 |
if st.button("Get text"):
|
16 |
with st.spinner("Wait for it...."):
|
17 |
a2t = A2T(audio)
|