我必须实现一个python程序,并且想使用watson-IBM服务。但是我无法更改URL参数中的语言(英语->法语)
我已经阅读了以下API文档:https://cloud.ibm.com/docs/services/speech-to-text?topic=speech-to-text-models&locale=en
此代码有效(默认语言):
speech_to_text = SpeechToTextV1(
iam_apikey='blablablablabla <3',
url='https://gateway-lon.watsonplatform.net/speech-to-text/api')
但不是这个
speech_to_text = SpeechToTextV1(
iam_apikey='blablablablabla <3',
url='https://gateway-lon.watsonplatform.net/speech-to-text/api/v1/recognize?model=fr-FR_BroadbandModel')
答案 0 :(得分:0)
请查看API文档-https://cloud.ibm.com/apidocs/speech-to-text?code=python
您已将服务句柄对象实例化与服务调用混合在一起。您显示的代码段是服务句柄对象实例化,URL应该是“ https://gateway-lon.watsonplatform.net/speech-to-text/api”或“ https://gateway-wdc.watsonplatform.net/speech-to-text/api”
要转录某些音频时,请使用recognize
方法speech_to_text.recognize(...)
。因此,从服务文档中-
speech_recognition_results = speech_to_text.recognize(
audio=audio_file,
model='fr-FR_BroadbandModel'
).get_result()