鍍金池/ 問答/Python/ python 文本轉(zhuǎn)語音問題

python 文本轉(zhuǎn)語音問題

import sys

reload(sys)
sys.setdefaultencoding('utf8')
import pyttsx
engine = pyttsx.init()
engine.say('hello world')
engine.runAndWait()

當(dāng)我使用pyttsy 嘗試轉(zhuǎn)換輸出語音是時(shí) 出現(xiàn)了這樣的錯(cuò)誤

C:\Python27\python.exe D:/python/ccc.py
Traceback (most recent call last):
  File "D:/python/ccc.py", line 6, in <module>
    engine = pyttsx.init()
    
  File "C:\Python27\lib\site-packages\pyttsx\__init__.py", line 39, in init
    eng = Engine(driverName, debug)
   
  File "C:\Python27\lib\site-packages\pyttsx\engine.py", line 45, in __init__
    self.proxy = driver.DriverProxy(weakref.proxy(self), driverName, debug)
    
  File "C:\Python27\lib\site-packages\pyttsx\driver.py", line 66, in __init__
    self._driver = self._module.buildDriver(weakref.proxy(self))
    
  File "C:\Python27\lib\site-packages\pyttsx\drivers\sapi5.py", line 37, in buildDriver
    return SAPI5Driver(proxy)
    
  File "C:\Python27\lib\site-packages\pyttsx\drivers\sapi5.py", line 41, in __init__
    self._tts = win32com.client.Dispatch('SAPI.SPVoice')
    
  File "C:\Python27\lib\site-packages\win32com\client\__init__.py", line 95, in Dispatch
    dispatch, userName = dynamic._GetGoodDispatchAndUserName(dispatch,userName,clsctx)
    
  File "C:\Python27\lib\site-packages\win32com\client\dynamic.py", line 114, in _GetGoodDispatchAndUserName

    return (_GetGoodDispatch(IDispatch, clsctx), userName)
  File "C:\Python27\lib\site-packages\win32com\client\dynamic.py", line 91, in _GetGoodDispatch

    IDispatch = pythoncom.CoCreateInstance(IDispatch, None, clsctx, pythoncom.IID_IDispatch)
pywintypes.com_error: (-2147221005, '\xce\xde\xd0\xa7\xb5\xc4\xc0\xe0\xd7\xd6\xb7\xfb\xb4\xae', None, None)

請(qǐng)問這是什么原因呢?

回答
編輯回答
眼雜

pyttsx 應(yīng)該是調(diào)用 win32com.client.
這個(gè)模塊比較有趣, 可以直接獲取 windows 下很多程序的控制權(quán).
比如操作EXCEL:

excel_app = win32com.client.Dispatch('Excel.Application')
excel_app.Visible = True    # 使 EXCEL 程序可見
excel_app.Worksheets(1).Cells(1, 1).Value = 'Something' # 設(shè)置單元格(A,1)內(nèi)容

而 pyttsx 作為 win32com.client 的一個(gè)代理, 是調(diào)用了微軟的RRSApp

self._tts = win32com.client.Dispatch('SAPI.SPVoice')

報(bào)錯(cuò)pywintypes.com_error: (-2147221005, '\xce\xde\xd0\xa7\xb5\xc4\xc0\xe0\xd7\xd6\xb7\xfb\xb4\xae', None, None)意思是"無效的字符串", 這個(gè)錯(cuò)誤說明程序SAPI.SPVoice不能被識(shí)別。推測(cè)應(yīng)該是題主的 windows 尚未安裝 Speech SDK.

參考Where can I download the SAPI 5.3 SDK?, 應(yīng)該去微軟的官網(wǎng)看看有沒有合適的 Speech SDK 下載安裝.

另外, Use Python for Windows for SAPI5 speech中提到

If necessary, download and install Microsoft [SAPI5SpeechInstaller.msi](https://www.microsoft.com/en-us/download/details.aspx?id=10121). Current Windows systems include speech by default, and the current Windows Software Development Kit includes up-to-date speech components for programmers.

可以嘗試一下下載這個(gè)Speech SDK.

2018年2月17日 10:25