TypeScript typings for Cloud Text-to-Speech API v1
Synthesizes natural-sounding speech by applying powerful neural network models.
For detailed description please check documentation.
Installing
Install typings for Cloud Text-to-Speech API:
npm install @types/gapi.client.texttospeech@v1 --save-dev
Usage
You need to initialize Google API client in your code:
gapi.load('client', () => {
});
Then load api client wrapper:
gapi.client.load('texttospeech', 'v1', () => {
});
Don't forget to authenticate your client before sending any request to resources:
var client_id = '',
scope = [
'https://www.googleapis.com/auth/cloud-platform',
],
immediate = true;
gapi.auth.authorize(
{ client_id: client_id, scope: scope, immediate: immediate },
authResult => {
if (authResult && !authResult.error) {
} else {
}
});
After that you can use Cloud Text-to-Speech API resources:
await gapi.client.texttospeech.text.synthesize({ });
await gapi.client.texttospeech.voices.list({ });