multi language tts on December 24, 2022 Get link Facebook X Pinterest Email Other Apps import pyttsx3# Initialize the TTS engineengine = pyttsx3.init()# Get a list of the available voicesvoices = engine.getProperty('voices')# Print the languages of the available voicesfor voice in voices: print(voice.language) Comments
Comments
Post a Comment