Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ if uploaded_image:
|
|
24 |
|
25 |
# Convert text to speech
|
26 |
speech_output = text_to_speech(text_output)
|
27 |
-
audio_bytes = BytesIO(speech_output['audio']
|
28 |
|
29 |
st.write("### Listen to Speech Output:")
|
30 |
-
st.audio(audio_bytes, format="audio/wav")
|
|
|
24 |
|
25 |
# Convert text to speech
|
26 |
speech_output = text_to_speech(text_output)
|
27 |
+
audio_bytes = BytesIO(speech_output['audio'])
|
28 |
|
29 |
st.write("### Listen to Speech Output:")
|
30 |
+
st.audio(audio_bytes, format="audio/wav")
|