0

我们正在使用 API Sessionless 和 python,我们将 'continue:True' 参数设置为:

def make_completed_audio_request(url, API_name=None, language=None, time=None):

username, password, endpoint, lan=select_voice_api(name=API_name, language=language)
audio = get_complete_audio(url, api_name=API_name, time=time)
endpoint=get_post_endpoint(url=endpoint, api_name=API_name)
if audio:
    list_audio=get_speakers_by_audio(audio[1].name)
    headers={'content-type': audio[2]}
    params = {'model': lan,
      'continuous':True,
              'timestamps': True}
    if language and (API_name == 'watson' or API_name == 'WATSON'):
        print 'enviando request'
        response = requests.post(url=endpoint, auth=(username, password), 
            params=params, data=audio[1], headers=headers)
        print 'cladificando error'
        error_clasifier(code=response.status_code)
    else:
        response = requests.post(url=endpoint, auth=(username, password), 
            params=params, data=audio[1], headers=headers)
        error_clasifier(code=response.status_code)
    if response:
    return response, list_audio, True, None
else:
    return None, None, False, None

但它仍然不起作用,它在它发现的第一个沉默中切断了转录

我究竟做错了什么?还有其他方法可以将其发送到 API 吗?

4

1 回答 1

0

我正在使用 watson_developer_cloud API。它易于使用,更重要的是 - 它有效。这是代码示例:

import json

from os.path import join, dirname

from watson_developer_cloud import SpeechToTextV1

speech_to_text = SpeechToTextV1(
    username="yourusername",
    password="yourpassword",
    x_watson_learning_opt_out=False)

with open(join(dirname(__file__), 'test.wav'), 'rb') as audio_file:

    data = json.dumps(speech_to_text.recognize(audio_file, content_type='audio/wav',  word_confidence=True, continuous=True, word_alternatives_threshold=0, max_alternatives=10))
于 2016-09-28T13:08:31.733 回答