Reputation: 83
My desktop Python application transcribes large sets of speech samples (each speech sample duration is between 1 sec and 8 sec long) and for that I am using Google Cloud Speech API. I am aware of all the usage limitations mentioned in this page and certainly within the limits to make sure that I do not violate any of these conditions.
When I started the application for one of my set of speech samples, it was able to transcribe few of them and interrupted in the middle with this error:
googleapiclient.errors.HttpError:
<HttpError 429 when requesting
https://speech.googleapis.com/v1beta1/speech:syncrecognize?alt=json returned
"Quota exceeded.">
I searched on web with this error ID and found this but I could not specifically relate it to the one that I am dealing with. Are there any other limitations with Google Cloud Speech API that I should be aware of?
Any help would be highly appreciated.
Upvotes: 5
Views: 2538
Reputation: 11
I also encounter this problem. Try checking the quotas on your API Manager dashboard > Speech API > Quotas.
I've just found out that for a simple Asynchronous requests, my quota increased by 50 requests.
Upvotes: 1