语音识别(1)四行代码,完成文本转换语音

语音识别,目标是:用电脑自动将人类的语音内容转换为相对因的文字,和将文字转换为语音。

文本➨语音:

使用pyttsx:python的包,直接使用pip进行安装。

pip install pyttsx3

1.导入模块;

import pyttsx3 as pyttsx

2.初始化, 用init方法,使用engine变量来接收;

engine=pyttsx.init()

3.使用say方法,里面的参数就是想要转换的语音内容;

4.执行。

engine.say('人生苦短,我爱python')
engine.runAndWait()

OK,搞定~

你可能感兴趣的:(python,语音识别,ai,人工智能)