isom5240 commited on
Commit
3a6cb45
·
verified ·
1 Parent(s): 38e2fe5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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'].numpy().tobytes())
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")