Skip to content

Commit e2be93e

Browse files
Merge pull request #115997 from robch/robch-pr/spx-0521
[CogSvcs] Update zone pivots and text related to SPX
2 parents 0c9d360 + b53068e commit e2be93e

File tree

32 files changed

+108
-138
lines changed

32 files changed

+108
-138
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/javascript/browser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,4 +246,4 @@ To launch your app, open your favorite web browser and point it to the public UR
246246

247247
## Next steps
248248

249-
[!INCLUDE [footer](footer.md)]
249+
[!INCLUDE [Speech recognition basics](../../speech-to-text-next-steps.md)]

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/javascript/footer.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/javascript/nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,4 +181,4 @@ node index.js
181181

182182
## Next steps
183183

184-
[!INCLUDE [footer](footer.md)]
184+
[!INCLUDE [Speech recognition basics](../../speech-to-text-next-steps.md)]

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/spx/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ms.date: 5/13/2020
1212
ms.author: v-demjoh
1313
---
1414

15-
In this quickstart, you use the SPX tool from the command line to recognize speech recorded in a sound file, and produce a text transcription. It's easy to use the SPX tool to perform common recognition tasks, such as transcribing conversations. After a one-time configuration, the SPX tool lets you transcribe audio into text interactively with a microphone or from files using a batch script.
15+
In this quickstart, you use the Speech CLI from the command line to recognize speech recorded in an audio file, and produce a text transcription. It's easy to use the Speech CLI to perform common recognition tasks, such as transcribing conversations. After a one-time configuration, the Speech CLI lets you transcribe audio into text interactively with a microphone or from files using a batch script.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-file/spx/spx.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ ms.author: v-demjoh
88

99
## Find a file that contains speech
1010

11-
The SPX tool can recognize speech in many file formats and natural languages. For this quickstart, you can use
11+
The Speech CLI can recognize speech in many file formats and natural languages. For this quickstart, you can use
1212
a WAV file (16kHz or 8kHz, 16-bit, and mono PCM) that contains English speech.
1313

1414
1. Download the <a href="https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/samples/csharp/sharedcontent/console/whatstheweatherlike.wav" download="whatstheweatherlike" target="_blank">whatstheweatherlike.wav <span class="docon docon-download x-hidden-focus"></span></a>.
15-
2. Copy the `whatstheweatherlike.wav` file to the same directory as the SPX tool binary file.
15+
2. Copy the `whatstheweatherlike.wav` file to the same directory as the Speech CLI binary file.
1616

17-
## Run the SPX tool
17+
## Run the Speech CLI
1818

19-
Now you're ready to run the SPX tool to recognize speech found in the sound file.
19+
Now you're ready to run the Speech CLI to recognize speech found in the sound file.
2020

21-
From the command line, change to the directory that contains the SPX tool binary file, and type:
21+
From the command line, change to the directory that contains the Speech CLI binary file, and type:
2222

2323
```bash
2424
spx recognize --file whatstheweatherlike.wav
2525
```
2626

2727
> [!NOTE]
28-
> The SPX tool defaults to English. You can choose a different language [from the Speech-to-text table](../../../../language-support.md).
28+
> The Speech CLI defaults to English. You can choose a different language [from the Speech-to-text table](../../../../language-support.md).
2929
> For example, add `--source de-DE` to recognize German speech.
3030
31-
The SPX tool will show a text transcription of the speech on the screen. Then the SPX tool will close.
31+
The Speech CLI will show a text transcription of the speech on the screen. Then the Speech CLI will close.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/go/footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ ms.author: travisw
77
---
88

99
> [!div class="nextstepaction"]
10-
> [Explore Go samples on GitHub](https://aka.ms/speech/github-go)
10+
> [Explore Go samples on GitHub](https://github.com/microsoft/cognitive-services-speech-sdk-go/tree/master/samples)

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/go/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ ms.date: 03/25/2020
66
ms.author: travisw
77
---
88

9-
If you prefer to jump right in, view or download all [Speech SDK Go Samples](https://aka.ms/speech/github-go) on GitHub. Otherwise, let's get started.
9+
If you prefer to jump right in, view or download all [Speech SDK Go Samples](https://github.com/microsoft/cognitive-services-speech-sdk-go/tree/master/samples) on GitHub. Otherwise, let's get started.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/spx/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ms.date: 5/13/2020
1212
ms.author: v-demjoh
1313
---
1414

15-
In this quickstart, you use the SPX tool from the command line to interactively recognize speech from a microphone input, and get the text transcription from captured audio. It's easy to use the SPX tool to perform common recognition tasks, such as transcribing conversations. After a one-time configuration, the SPX tool lets you transcribe audio into text interactively with a microphone or from files using a batch script.
15+
In this quickstart, you use the Speech CLI from the command line to interactively recognize speech from a microphone input, and get the text transcription from captured audio. It's easy to use the Speech CLI to perform common recognition tasks, such as transcribing conversations. After a one-time configuration, the Speech CLI lets you transcribe audio into text interactively with a microphone or from files using a batch script.

articles/cognitive-services/Speech-Service/includes/quickstarts/from-microphone/spx/spx.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ ms.author: v-demjoh
1111
Plug in and turn on your PC microphone, and turn off any apps that might also use the microphone. Some computers have a built-in microphone,
1212
while others require configuration of a Bluetooth device.
1313

14-
## Run the SPX tool
14+
## Run the Speech CLI
1515

16-
Now you're ready to run the SPX tool to recognize speech from your microphone.
16+
Now you're ready to run the Speech CLI to recognize speech from your microphone.
1717

18-
1. **Start your app** - From the command line, change to the directory that contains the SPX tool binary file, and type:
18+
1. **Start your app** - From the command line, change to the directory that contains the Speech CLI binary file, and type:
1919
```bash
2020
spx recognize --microphone
2121
```
2222

2323
> [!NOTE]
24-
> The SPX tool defaults to English. You can choose a different language [from the Speech-to-text table](../../../../language-support.md).
24+
> The Speech CLI defaults to English. You can choose a different language [from the Speech-to-text table](../../../../language-support.md).
2525
> For example, add `--source de-DE` to recognize German speech.
2626

27-
2. **Start recognition** - Speak into the microphone. You will see transcription of your words into text in real-time. The SPX tool will stop after a period of silence, or when you press ctrl-C.
27+
2. **Start recognition** - Speak into the microphone. You will see transcription of your words into text in real-time. The Speech CLI will stop after a period of silence, or when you press ctrl-C.

articles/cognitive-services/Speech-Service/includes/quickstarts/spx-next-steps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: v-demjoh
88

99
## Next steps
1010

11-
Continue exploring the basics to learn about other features of the SPX tool.
11+
Continue exploring the basics to learn about other features of the Speech CLI.
1212

1313
> [!div class="nextstepaction"]
14-
> [Explore SPX tool basics](../../spx-basics.md)
14+
> [Explore Speech CLI basics](../../spx-basics.md)

0 commit comments

Comments
 (0)