文本编辑器,可以将语音转换为文本,反之亦然

时间:2016-11-11 13:38:40

标签: python windows text-editor

我正在考虑为我的学术项目实施一个文本编辑器,它可以将语音转换成文本,也可以说出书面文本。

是否可以在Python中编写代码?或者它可能吗?如果可能,怎么样?

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

是的,这是非常有可能的。如果您是初学者,我建议您使用python执行此操作。您可以将PyQt用于GUI,pyttsxSpeechRecognition用于语音引擎(离线)。执行以下操作以安装它们:

 pip install SpeechRecognition
 pip install pyttsx

这里有一些代码可以让你开始使用python中的语音识别

import speech_recognition
import pyttsx

speech_engine = pyttsx.init('sapi5') # see http://pyttsx.readthedocs.org/en/latest/engine.html#pyttsx.init
speech_engine.setProperty('rate', 150)

def speak(text):
    speech_engine.say(text)
    speech_engine.runAndWait()

recognizer = speech_recognition.Recognizer()

def listen():
    with speech_recognition.Microphone() as source:
        recognizer.adjust_for_ambient_noise(source)
        audio = recognizer.listen(source)

    try:
        return recognizer.recognize_sphinx(audio)
        # or: return recognizer.recognize_google(audio)
    except speech_recognition.UnknownValueError:
        print("Could not understand audio")
    except speech_recognition.RequestError as e:
        print("Recog Error; {0}".format(e))

    return ""

speak("Say something!")
speak("I heard you say " + listen())