Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Speech] v1_1beta1 updates. #472

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 22 additions & 12 deletions speech/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,28 @@ __Usage:__ `node recognize.js --help`

```
Commands:
sync <filename> Detects speech in a local audio file.
sync-gcs <gcsUri> Detects speech in an audio file located in a Google Cloud Storage bucket.
sync-words <filename> Detects speech in a local audio file with word time offset.
async <filename> Creates a job to detect speech in a local audio file, and waits for the job to complete.
async-gcs <gcsUri> Creates a job to detect speech in an audio file located in a Google Cloud Storage bucket,
and waits for the job to complete.
async-gcs-words <gcsUri> Creates a job to detect speech with word time offset in an audio file located in a Google
Cloud Storage bucket, and waits for the job to complete.
stream <filename> Detects speech in a local audio file by streaming it to the Speech API.
listen Detects speech in a microphone input stream. This command requires that you have SoX
installed and available in your $PATH. See
https://www.npmjs.com/package/node-record-lpcm16#dependencies
sync <filename> Detects speech in a local audio file.
sync-gcs <gcsUri> Detects speech in an audio file located in a Google Cloud Storage bucket.
sync-words <filename> Detects speech in a local audio file with word time offset.
sync-punctuation <filename> Detects speech in a local audio file with automatic punctuation enabled.
sync-video <filename> Detects speech in a local audio file with original media type set to VIDEO.
sync-metadata <filename> Detects speech in a local audio file with audio metadata paramters.
async <filename> Creates a job to detect speech in a local audio file, and waits for the job to
complete.
async-gcs <gcsUri> Creates a job to detect speech in an audio file located in a Google Cloud Storage
bucket, and waits for the job to complete.
async-gcs-words <gcsUri> Creates a job to detect speech with word time offset in an audio file located in a
Google Cloud Storage bucket, and waits for the job to complete.
async-gcs-punctuation <gcsUri> Creates a job to detect speech automatic punctuation enabled in an audio file located
in a Google Cloud Storage bucket, and waits for the job to complete.
async-gcs-video <gcsUri> Creates a job to detect speech with original media type set to VIDEO in an audio file
located in a Google Cloud Storage bucket, and waits for the job to complete.
async-gcs-metadata <gcsUri> Creates a job to detect speech with audio metadata paramaters in an audio file located
in a Google Cloud Storage bucket, and waits for the job to complete.
stream <filename> Detects speech in a local audio file by streaming it to the Speech API.
listen Detects speech in a microphone input stream. This command requires that you have SoX
installed and available in your $PATH. See
https://www.npmjs.com/package/node-record-lpcm16#dependencies

Options:
--help Show help [boolean]
Expand Down
Loading