| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
These examples demo accessing the Google Cloud Speech API in streaming mode (via its gRPC API) and in non-streaming mode (via its REST API).
If you have not already done so, enable the Google Cloud Speech API for your project. You must be whitelisted to do this.
The example uses a service account for OAuth2 authentication. So next, set up to authenticate with the Speech API using your project's service account credentials.
Visit the Cloud Console, and navigate to: API Manager > Credentials > Create credentials > Service account key > New service account. Create a new service account, and download the json credentials file.
Then, set the GOOGLE_APPLICATION_CREDENTIALS environment variable to point to your downloaded service account credentials before running this example:
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/your/credentials-key.json
If you do not do this, the REST api will return a 403. The streaming sample will just sort of hang silently.
See the Cloud Platform Auth Guide for more information.
If you're running the speech_rest.py sample:
$ pip install requirements-speech_rest.txtIf you're running the speech_streaming.py sample:
$ pip install requirements-speech_streaming.txtTo run the speech_rest.py sample:
$ python speech_rest.py resources/audio.rawYou should see a response with the transcription result.
To run the speech_streaming.py sample:
$ python speech_streaming.pyThe sample will run in a continuous loop, printing the data and metadata it receives from the Speech API, which includes alternative transcriptions of what it hears, and a confidence score. Say "exit" to exit the loop.
Note that the speech_streaming.py sample does not yet support python 3, as the upstream grpcio library's support is not yet complete.
| Back | FazBrowse Home | New Git URL |