edge-tts/examples/dynamic_voice_selection.py
2023-01-05 00:56:15 +02:00

29 lines
671 B
Python

#!/usr/bin/env python3
"""
Example of dynamic voice selection using VoicesManager.
"""
import asyncio
import random
import edge_tts
from edge_tts import VoicesManager
async def main() -> None:
voices = await VoicesManager.create()
voice = voices.find(Gender="Male", Language="es")
# Also supports Locales
# voice = voices.find(Gender="Female", Locale="es-AR")
VOICE = random.choice(voice)["ShortName"]
TEXT = "Hoy es un buen día."
OUTPUT_FILE = "spanish.mp3"
communicate = edge_tts.Communicate(TEXT, VOICE)
await communicate.save(OUTPUT_FILE)
if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(main())