Reputation: 31
Using Cloud Text-to-Speech API v1 in Apis Explorer, I get this error when processing larger files: 5000 characters limit exceeded
https://developers.google.com/apis-explorer/
I checked my quota in Cloud Text-to-Speech API, the quota of characters in all requests par minute is 150000.
What could I do ? Thanks
Upvotes: 3
Views: 1846
Reputation: 816
You can use the iterative approach (for/while loop) to process your data. This will limit the number of character at each request.
Upvotes: 0