Replace example because of playsound bugs on Win

This commit is contained in:
Vuizur
2023-01-04 20:10:29 +01:00
parent 142b4f6457
commit 31c33f9fa2

View File

@@ -4,25 +4,21 @@ Example Python script that shows how to use edge-tts as a module
""" """
import asyncio import asyncio
import tempfile
from playsound import playsound
import edge_tts import edge_tts
async def main(): async def main():
""" """
Main function Main function
""" """
communicate = edge_tts.Communicate() TEXT = "Hello World!"
ask = input("What do you want TTS to say? ") VOICE = "en-GB-SoniaNeural"
with tempfile.NamedTemporaryFile() as temporary_file: OUTPUT_FILE = "test.mp3"
async for i in communicate.run(ask):
if i[2] is not None:
temporary_file.write(i[2])
playsound(temporary_file.name)
communicate = edge_tts.Communicate()
with open(OUTPUT_FILE, "wb") as f:
async for i in communicate.run(TEXT, voice=VOICE):
if i[2] is not None:
f.write(i[2])
if __name__ == "__main__": if __name__ == "__main__":
asyncio.get_event_loop().run_until_complete(main()) asyncio.get_event_loop().run_until_complete(main())