awacke1 commited on
Commit
d500c6c
·
verified ·
1 Parent(s): cb1a7fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -383,8 +383,8 @@ def sync_edge_tts_generate_audio(text, voice="en-US-AriaNeural", rate=0, pitch=0
383
 
384
  def speak_with_edge_tts(text, voice="en-US-AriaNeural", rate=0, pitch=0, file_format="mp3"):
385
  """Wrapper for the async TTS generate call."""
386
- await edge_tts_generate_audio(text, voice, rate, pitch, file_format)
387
- return
388
 
389
  def play_and_download_audio(file_path, file_type="mp3"):
390
  """Streamlit audio + a quick download link."""
 
383
 
384
  def speak_with_edge_tts(text, voice="en-US-AriaNeural", rate=0, pitch=0, file_format="mp3"):
385
  """Wrapper for the async TTS generate call."""
386
+ TTS = sync_edge_tts_generate_audio(text, voice, rate, pitch, file_format)
387
+ return TTS
388
 
389
  def play_and_download_audio(file_path, file_type="mp3"):
390
  """Streamlit audio + a quick download link."""