I have to realize a python program and I would like to use watson-IBM services. But I can not change the language in the parameters of the URL (English --> French)
I already read this API doc: https://cloud.ibm.com/docs/services/speech-to-text?topic=speech-to-text-models&locale=en
This code works (default language):
speech_to_text = SpeechToTextV1(
iam_apikey='blablablablabla <3',
url='https://gateway-lon.watsonplatform.net/speech-to-text/api')
but not this one
speech_to_text = SpeechToTextV1(
iam_apikey='blablablablabla <3',
url='https://gateway-lon.watsonplatform.net/speech-to-text/api/v1/recognize?model=fr-FR_BroadbandModel')