python语音朗读
生活随笔
收集整理的這篇文章主要介紹了
python语音朗读
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1.安裝python2.7
2.安裝pyttsx:?
pip install pyttsx
(需安裝pip)
github下載地址:https://github.com/westonpace/pyttsx
3.安裝pywin32(對應python版本)
下載地址:https://sourceforge.net/projects/pywin32/files/pywin32/
代碼1只需pywin32
#-*-coding:utf8-*- import win32com.client speaker = win32com.client.Dispatch("SAPI.SpVoice") speaker.Speak("hello")
代碼2:
# coding:utf-8 import sys reload(sys) sys.setdefaultencoding('utf8') # __author__ = '郭 璞' # __date__ = '2016/8/6' # __Desc__ = 文字轉語音輸出 import pyttsx engine = pyttsx.init() engine.say('hello world') engine.say('中文') engine.runAndWait() # 朗讀一次 engine.endLoop()總結
以上是生活随笔為你收集整理的python语音朗读的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [CTO札记]平台化,多资源整合之道
- 下一篇: 最长链机制