Update src/streamlit_app.py
Browse files- src/streamlit_app.py +2 -0
src/streamlit_app.py
CHANGED
|
@@ -87,6 +87,8 @@ if choice == 'English':
|
|
| 87 |
status.success("Transcription completed ✅")
|
| 88 |
st.info(f"Transcription time: {transcription_time:.2f} seconds")
|
| 89 |
|
|
|
|
|
|
|
| 90 |
st.subheader("Transcript")
|
| 91 |
st.write(result["text"])
|
| 92 |
|
|
|
|
| 87 |
status.success("Transcription completed ✅")
|
| 88 |
st.info(f"Transcription time: {transcription_time:.2f} seconds")
|
| 89 |
|
| 90 |
+
st.audio(wav_path, format="audio/mpeg", loop=True)
|
| 91 |
+
|
| 92 |
st.subheader("Transcript")
|
| 93 |
st.write(result["text"])
|
| 94 |
|