首页 > 解决方案 > 类型错误模块对象不可调用python gtts

问题描述

我正在使用 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()

标签: pythontypeerrorgtts

解决方案


推荐阅读