新版Google Speech API存在问题

时间:2017-06-10 06:51:23

标签: python google-speech-api

我正在尝试迁移到Google的新语音API,因为测试版即将到期。然而,新的似乎不起作用。首先,这个安装似乎失败了:

pip install --upgrade google-cloud-speech

它产生以下错误以及一大堆其他错误

ImportError: cannot import name IncompleteRead

尽管如此,我现在似乎能够使用他们的示例文件使其工作,但我自己的base64编码数据不起作用....尽管使用与beta API完全相同的数据。有人有同样的问题吗?

我正在使用的代码如下,导致"没有从Speech API"返回结果。我无法看到API提供解析错误消息的能力。如果我取消注释3行以使用audio.raw它工作正常,但这是谷歌提供的样本。我无法理解为什么我的文件不起作用,好像我使用完全相同的base64编码方法和相同的测试文件,它与beta API一起使用。

#!/usr/bin/env python
import io
import os
# Imports the Google Cloud client library
from google.cloud import speech

os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "myfile.json"

def run_quickstart(speech_content):

    # Instantiates a client
    speech_client = speech.Client()

    #file_name = os.path.join( os.path.dirname(__file__), 'audio.raw')
    #audio_file = io.open(file_name, 'rb')
    #speech_content = audio_file.read()

    sample = speech_client.sample(
        speech_content,
        source_uri=None,
        encoding='LINEAR16',
        sample_rate_hertz=16000)

    # Detects speech in the audio file
    alternatives = sample.recognize('en-US')

    for alternative in alternatives:
        print('Transcript: {}'.format(alternative.transcript))


if __name__ == '__main__':
    import base64
    file = open('test.wav', 'rb')
    data = file.read()
    speech_content = base64.b64encode(data)
    #print speech_content
    run_quickstart(speech_content)

1 个答案:

答案 0 :(得分:0)

就Pip安装而言,卸载和重新安装似乎已经解决了这个问题。默认使用Debian的Pip版本显然很旧,这可能是问题所在。使用apt-get进行升级似乎不会升级Pip。

就Google API而言,我发现他们用于构建Python代码的方法不起作用。在使用他们的API测试程序后,我最终能够修改我的原始代码,以便它可以使用新的API。