【问题标题】:Google Cloud Speech-to-Text AP谷歌云语音转文本 AP
【发布时间】:2018-06-28 15:26:56
【问题描述】:

我正在使用 Google Cloud Speech-to-Text AP 并尝试转录长音频文件。但是无法检测到存储桶中的音频文件。 我收到一条错误消息:IOError: [Errno 2] No such file or directory:

def transcribe_gcs(gcs_uri):

time(gcs_uri)

"""Asynchronously transcribes the audio file specified by the gcs_uri."""
from google.cloud import speech
from google.cloud.speech import enums
from google.cloud.speech import types
client = speech.SpeechClient()

audio = types.RecognitionAudio(uri=gcs_uri)
config = types.RecognitionConfig(
    encoding=enums.RecognitionConfig.AudioEncoding.FLAC,
    sample_rate_hertz=16000,
    language_code='en-US')

operation = client.long_running_recognize(config, audio)

print('Waiting for operation to complete...')
response = operation.result(timeout=90)

# Each result is for a consecutive portion of the audio. Iterate through
# them to get the transcripts for the entire audio file.
for result in response.results:
    # The first alternative is the most likely one for this portion.
    print(u'Transcript: {}'.format(result.alternatives[0].transcript))
    print('Confidence: {}'.format(result.alternatives[0].confidence))

【问题讨论】:

    标签: python-2.7 speech google-speech-api


    【解决方案1】:

    试试这个

    import requests
    import json
    
    url = "https://speech.googleapis.com/v1/speech:longrunningrecognize?key=<apiaccesskey>"
    
    
    payload = {"config": {"encoding": "LINEAR16","sample_rate_hertz": 8000,
                         "language_code": "en-IN"},
                         "audio": {"uri": "gs://bucketname/file.flac"}}
    
    r = requests.post(url, data=json.dumps(payload))
    
    json_resp = r.json()
    token_resp=json_resp['name']
    
    url = "https://speech.googleapis.com/v1/operations/" + str(token_resp) + 
          "?key=<apiacesskey>"
    
    content_response = requests.get(url)
    content_json = content_response.json()
    

    您的回复在content_json 变量中。

    【讨论】:

      猜你喜欢
      • 2019-03-13
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-07-11
      • 1970-01-01
      • 2023-04-09
      相关资源
      最近更新 更多