我正在使用 gtts 但是当我运行它时它说:
TypeError 'module' object is not callable
有谁知道我应该怎么做?如果它有帮助我在 Windows 上使用 python 3.8.6 非常感谢这里是代码:
import os
from gtts import gTTS
text_to_read = "Hello my name is Alex. What's your name? "
language = 'en'
slow_audio_speed = False
filename = '1.mp3'
def reading_from_string():
audio_created = gTTS(text=text_to_read, lang=language,
slow=slow_audio_speed)
audio_created.save(filename)
if platform == "linux":
os.system(f'omxplayer --no-keys {filename}')
elif platform == 'win32':
os.system(f'start {filename}')
else:
print("I am not compatible with your device")
exit()
reading_from_string()