I hope to use IBM speech recognition service without - curl
or ibm_watson
module.
And my attempt is below:
import speech_recognition as sr
r = sr.Recognizer()
text = r.recognize_ibm(audio,username='',password='')
Even though, I have 'Service credentials' for IBM cloud - speech to text, I cannot find correct form for the function.
In the documents of recognize_ibm()
, it is said that I need to enter the link_1 to find my username
in XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
format.
But the link_1 is broken.
Where can I find the username
and password
?
I also tried text = r.recognize_ibm(audio,username='apikey',password=api_key)
as the previous answers link_2.
Actually I realized the module was not working.