File size: 350 Bytes
3dcc608
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import edge_tts
import tempfile

def edge_text_to_speech(text, voice):
    voice_short_name = voice.split(" - ")[0]
    communicate = edge_tts.Communicate(text, voice_short_name)
    with tempfile.NamedTemporaryFile(delete=False, suffix=".mp3") as tmp_file:
        tmp_path = tmp_file.name
        communicate.save_sync(tmp_path)
    return tmp_path