Reputation: 1
I am a newbie in Google Speech API and I want to use it. Below is what I have done till now. 1. I have installed google cloud speech in Windows
Please let me know if anything else is needed.
Thanks
Upvotes: 0
Views: 3981
Reputation: 84
I guess you are using the sample transcribe_async.py. If yes then you need to increase the wait time-out for response from async call. It depends on the duration of your audio file, may be from 90 to say 250 (?)
response = operation.result(timeout=90)
Upvotes: 2