如何接收 python 中的音频输入并将其转换为文本字符串
how to recieve Audio inputs in python and converts it to text string
我觉得我的问题已经从标题中看出来了
是否有 python 模块或函数允许我接收音频输入和 return 文本值?
例如,如果我用麦克风说你好 python 程序 returns "hellow" 作为文本值。
使用 PyAudio:https://people.csail.mit.edu/hubert/pyaudio/ to capture audio from your speaker, then the speech recognition API: https://pypi.python.org/pypi/SpeechRecognition/ 将音频转换为文本。
我觉得我的问题已经从标题中看出来了
是否有 python 模块或函数允许我接收音频输入和 return 文本值?
例如,如果我用麦克风说你好 python 程序 returns "hellow" 作为文本值。
使用 PyAudio:https://people.csail.mit.edu/hubert/pyaudio/ to capture audio from your speaker, then the speech recognition API: https://pypi.python.org/pypi/SpeechRecognition/ 将音频转换为文本。