當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。