用python写一个语音转文字的代码
这是一个使用 Python 的 SpeechRecognition 库将语音转换为文本的示例代码:import speech_recognition as sr# 创建 Recognizer 对象r = sr.Recognizer()# 使用麦克风进行语音识别with sr.Microphone() as source:audio = r.listen(source)#...
·
这是一个使用 Python 的 SpeechRecognition 库将语音转换为文本的示例代码:
import speech_recognition as sr
# 创建 Recognizer 对象
r = sr.Recognizer()
# 使用麦克风进行语音识别
with sr.Microphone() as source:
audio = r.listen(source)
# 识别语音
text = r.recognize_google(audio, language='zh-CN')
print(text)
需要注意的是,需要安装 spee
更多推荐
已为社区贡献2条内容
所有评论(0)