Spaces:
Runtime error
Runtime error
Commit
·
3412de9
1
Parent(s):
4dce433
Spinner when adding download button.
Browse files
app.py
CHANGED
@@ -82,8 +82,7 @@ if __name__ == "__main__":
|
|
82 |
|
83 |
with st.spinner(text="Transcribing..."):
|
84 |
transcript = run_inference(asr, uploaded_file)
|
85 |
-
|
86 |
-
st.download_button("Download transcript", transcript, "transcript.txt")
|
87 |
|
88 |
with st.expander("Transcript", expanded=True):
|
89 |
st.write(transcript)
|
|
|
82 |
|
83 |
with st.spinner(text="Transcribing..."):
|
84 |
transcript = run_inference(asr, uploaded_file)
|
85 |
+
st.download_button("Download transcript", transcript, "transcript.txt")
|
|
|
86 |
|
87 |
with st.expander("Transcript", expanded=True):
|
88 |
st.write(transcript)
|