diff --git a/packages/google-cloud-speech/.gitignore b/packages/google-cloud-speech/.gitignore index 5d32b23782f..783162def96 100644 --- a/packages/google-cloud-speech/.gitignore +++ b/packages/google-cloud-speech/.gitignore @@ -12,3 +12,4 @@ system-test/*key.json .DS_Store package-lock.json __pycache__ +.vscode diff --git a/packages/google-cloud-speech/.vscode/launch.json b/packages/google-cloud-speech/.vscode/launch.json deleted file mode 100644 index a6867007416..00000000000 --- a/packages/google-cloud-speech/.vscode/launch.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "Launch Program", - "program": "${workspaceFolder}/samples/betaFeatures.js" - } - ] -} \ No newline at end of file diff --git a/packages/google-cloud-speech/README.md b/packages/google-cloud-speech/README.md index 066d509148c..32375e25418 100644 --- a/packages/google-cloud-speech/README.md +++ b/packages/google-cloud-speech/README.md @@ -102,6 +102,7 @@ Samples are in the [`samples/`](https://github.com/googleapis/nodejs-speech/tree | --------------------------- | --------------------------------- | ------ | | Microphone stream | [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/MicrophoneStream.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/MicrophoneStream.js,samples/README.md) | | Beta Features | [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/betaFeatures.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/betaFeatures.js,samples/README.md) | +| Export-to-storage.v1p1beta1 | [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/export-to-storage.v1p1beta1.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/export-to-storage.v1p1beta1.js,samples/README.md) | | Infinite Streaming | [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/infiniteStreaming.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/infiniteStreaming.js,samples/README.md) | | Model Adaptation | [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/modelAdaptation.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/modelAdaptation.js,samples/README.md) | | Multi Region | [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/multiRegion.js) | [![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/multiRegion.js,samples/README.md) | diff --git a/packages/google-cloud-speech/linkinator.config.json b/packages/google-cloud-speech/linkinator.config.json index 29a223b6db6..1819490cf84 100644 --- a/packages/google-cloud-speech/linkinator.config.json +++ b/packages/google-cloud-speech/linkinator.config.json @@ -3,7 +3,8 @@ "skip": [ "https://codecov.io/gh/googleapis/", "www.googleapis.com", - "img.shields.io" + "img.shields.io", + "https://github.com/googleapis/nodejs-speech/blob/master/samples/export-to-storage.v1p1beta1.js" ], "silent": true, "concurrency": 10 diff --git a/packages/google-cloud-speech/samples/README.md b/packages/google-cloud-speech/samples/README.md index b7d61db59d3..b91e7e17b03 100644 --- a/packages/google-cloud-speech/samples/README.md +++ b/packages/google-cloud-speech/samples/README.md @@ -14,6 +14,7 @@ * [Samples](#samples) * [Microphone stream](#microphone-stream) * [Beta Features](#beta-features) + * [Export-to-storage.v1p1beta1](#export-to-storage.v1p1beta1) * [Infinite Streaming](#infinite-streaming) * [Model Adaptation](#model-adaptation) * [Multi Region](#multi-region) @@ -74,6 +75,23 @@ __Usage:__ +### Export-to-storage.v1p1beta1 + +View the [source code](https://github.com/googleapis/nodejs-speech/blob/master/samples/export-to-storage.v1p1beta1.js). + +[![Open in Cloud Shell][shell_img]](https://console.cloud.google.com/cloudshell/open?git_repo=https://github.com/googleapis/nodejs-speech&page=editor&open_in_editor=samples/export-to-storage.v1p1beta1.js,samples/README.md) + +__Usage:__ + + +`node samples/export-to-storage.v1p1beta1.js` + + +----- + + + + ### Infinite Streaming Performs infinite streaming using the streamingRecognize operation with the Cloud Speech API.