当前位置: 首页>>代码示例>>Python>>正文


Python pyttsx3.init方法代码示例

本文整理汇总了Python中pyttsx3.init方法的典型用法代码示例。如果您正苦于以下问题:Python pyttsx3.init方法的具体用法?Python pyttsx3.init怎么用?Python pyttsx3.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在pyttsx3的用法示例。


在下文中一共展示了pyttsx3.init方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: voice_output

# 需要导入模块: import pyttsx3 [as 别名]
# 或者: from pyttsx3 import init [as 别名]
def voice_output(ans):
    import pyttsx3
    import time
    eng=pyttsx3.init()
    eng.say(ans)
    eng.runAndWait() 
开发者ID:chaira19,项目名称:Hindi-DateTime-Parser,代码行数:8,代码来源:voice.py

示例2: text_to_speech_offline

# 需要导入模块: import pyttsx3 [as 别名]
# 或者: from pyttsx3 import init [as 别名]
def text_to_speech_offline(text, lang='english'):
    """Convert text to speech offline. It uses different speech engines based on your operating system.

    Args:
        text (str): Text.
        lang (str): Language (Ex: brazil).

    """
    engine = pyttsx3.init()
    rate = engine.getProperty('rate')
    engine.setProperty('rate', rate - 50)
    engine.setProperty('voice', lang)
    engine.say(text)
    engine.runAndWait() 
开发者ID:lucasayres,项目名称:python-tools,代码行数:16,代码来源:text_to_speech_offline.py

示例3: create

# 需要导入模块: import pyttsx3 [as 别名]
# 或者: from pyttsx3 import init [as 别名]
def create(self):
        self.engine = pyttsx3.init()
        self.engine.setProperty('rate', self.rate) 
开发者ID:sukeesh,项目名称:Jarvis,代码行数:5,代码来源:voice.py

示例4: __init__

# 需要导入模块: import pyttsx3 [as 别名]
# 或者: from pyttsx3 import init [as 别名]
def __init__(self):
        self.speaker = pyttsx3.init(driverName='sapi5')
        # self.speaker.setProperty('voice', 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Speech\Voices\Tokens\TTS_MS_EN-US_ZIRA_11.0') 
开发者ID:Sunuba,项目名称:roc,代码行数:5,代码来源:Speak.py

示例5: speak_text

# 需要导入模块: import pyttsx3 [as 别名]
# 或者: from pyttsx3 import init [as 别名]
def speak_text(text):
    engine = pyttsx3.init()
    engine.say(text)
    engine.runAndWait() 
开发者ID:stoic1979,项目名称:robovision,代码行数:6,代码来源:utils.py

示例6: __init__

# 需要导入模块: import pyttsx3 [as 别名]
# 或者: from pyttsx3 import init [as 别名]
def __init__(self, server_endpoint, qa_endpoint, goose_window, watson_api=None):
        self.watson_api = watson_api
        self.server_endpoint = server_endpoint
        self.qa_endpoint = qa_endpoint
        self.chunk_size = 16000
        self.recognizer = sr.Recognizer()
        self.goose_window = goose_window
        if not watson_api:
            self._tts = pyttsx3.init()
            self._tts.connect("started-word", self._make_tts_cb()) 
开发者ID:castorini,项目名称:honk,代码行数:12,代码来源:client.py


注:本文中的pyttsx3.init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。