1.0.20220808 • Published 2 years ago

@maxim_mazurok/gapi.client.speech v1.0.20220808

Weekly downloads
77
License
MIT
Repository
github
Last release
2 years ago

TypeScript typings for Cloud Speech-to-Text API v1

Converts audio to text by applying powerful neural network models. For detailed description please check documentation.

Installing

Install typings for Cloud Speech-to-Text API:

npm install @types/gapi.client.speech@v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load('speech', 'v1', () => {
  // now we can use gapi.client.speech
  // ...
});

Don't forget to authenticate your client before sending any request to resources:

// declare client_id registered in Google Developers Console
var client_id = '',
  scope = [ 
      // See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
      '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) {
        /* handle successful authorization */
    } else {
        /* handle authorization error */
    }
});

After that you can use Cloud Speech-to-Text API resources:

/*
Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
*/
await gapi.client.speech.operations.get({ name: "name",  });

/*
Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
*/
await gapi.client.speech.operations.list({  });

/*
Performs asynchronous speech recognition: receive results via the google.longrunning.Operations interface. Returns either an `Operation.error` or an `Operation.response` which contains a `LongRunningRecognizeResponse` message. For more information on asynchronous speech recognition, see the [how-to](https://cloud.google.com/speech-to-text/docs/async-recognize).
*/
await gapi.client.speech.speech.longrunningrecognize({  });

/*
Performs synchronous speech recognition: receive results after all audio has been sent and processed.
*/
await gapi.client.speech.speech.recognize({  });
1.0.20220616

2 years ago

1.0.20220624

2 years ago

1.0.20220714

2 years ago

1.0.20220712

2 years ago

1.0.20220728

2 years ago

1.0.20220722

2 years ago

1.0.20220808

2 years ago

1.0.20220509

2 years ago

1.0.20220511

2 years ago

1.0.20220523

2 years ago

1.0.20220602

2 years ago

1.0.20220419

2 years ago

1.0.20220425

2 years ago

1.0.20220316

2 years ago

1.0.20220408

2 years ago

1.0.20220404

2 years ago

1.0.20220411

2 years ago

1.0.20220301

2 years ago

1.0.20220221

2 years ago

1.0.20220310

2 years ago

1.0.20220105

2 years ago

1.0.20220112

2 years ago

1.0.20220203

2 years ago

1.0.20220128

2 years ago

1.0.20211130

2 years ago

1.0.20211216

2 years ago

1.0.20211210

2 years ago

1.0.20211104

2 years ago

1.0.20211221

2 years ago

1.0.20211021

3 years ago

1.0.20211008

3 years ago

1.0.20210929

3 years ago

1.0.20210924

3 years ago

1.0.20210907

3 years ago

1.0.20210825

3 years ago

1.0.20210810

3 years ago

1.0.20210805

3 years ago

1.0.20210730

3 years ago

1.0.20210726

3 years ago

1.0.20210714

3 years ago

1.0.20210706

3 years ago

1.0.20210624

3 years ago

1.0.20210617

3 years ago

1.0.20210601

3 years ago

1.0.20210527

3 years ago

1.0.20210519

3 years ago

1.0.20210513

3 years ago

1.0.20210506

3 years ago

1.0.20210429

3 years ago

1.0.20210428

3 years ago

1.0.20210423

3 years ago

1.0.20210407

3 years ago

1.0.20210401

3 years ago

1.0.20210325

3 years ago

1.0.20210318

3 years ago

1.0.20210311

3 years ago

1.0.20210308

3 years ago

1.0.20210225

3 years ago

1.0.20210218

3 years ago

1.0.20210209

3 years ago

1.0.20210204

3 years ago

1.0.20210121

3 years ago

1.0.20210114

3 years ago

1.0.20210106

3 years ago

1.0.20201210

3 years ago

1.0.20201207

3 years ago

1.0.20201113

3 years ago

1.0.20201027

3 years ago