Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
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 |
-
|
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."""
|