Skip to content

Commit 3fa28a0

Browse files
committed
cross links etc
1 parent 2e7d0f9 commit 3fa28a0

29 files changed

+155
-24
lines changed

articles/cognitive-services/Speech-Service/includes/containers-cstt-common-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ manager: nitinme
44
ms.service: cognitive-services
55
ms.subservice: speech-service
66
ms.topic: include
7-
ms.date: 04/06/2023
7+
ms.date: 04/18/2023
88
ms.author: eur
99
---
1010

articles/cognitive-services/Speech-Service/includes/containers-speech-config-http.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ manager: nitinme
44
ms.service: cognitive-services
55
ms.subservice: speech-service
66
ms.topic: include
7-
ms.date: 04/06/2023
7+
ms.date: 04/18/2023
88
ms.author: eur
99
---
1010

11-
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK. By default, the Speech SDK uses the public Speech service. To use the container, you need to change the initialization method.
11+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method.
1212

1313
> [!IMPORTANT]
14-
> When you use the Speech service with containers, be sure to use host authentication. If you configure the key and region, requests will go to the public Speech service. Results from the Speech service might not be what you expect. Requests from disconnected containers will fail.
14+
> When you use the Speech service with containers, be sure to use [host authentication](../speech-container-howto.md#host-urls). If you configure the key and region, requests will go to the public Speech service. Results from the Speech service might not be what you expect. Requests from disconnected containers will fail.
1515
1616
::: zone pivot="programming-language-csharp"
1717
Instead of using this Azure-cloud initialization config:

articles/cognitive-services/Speech-Service/includes/containers-speech-config-ws.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ manager: nitinme
44
ms.service: cognitive-services
55
ms.subservice: speech-service
66
ms.topic: include
7-
ms.date: 04/06/2023
7+
ms.date: 04/18/2023
88
ms.author: eur
99
---
1010

11-
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK. By default, the Speech SDK uses the public Speech service. To use the container, you need to change the initialization method.
11+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method.
1212

1313
> [!IMPORTANT]
14-
> When you use the Speech service with containers, be sure to use host authentication. If you configure the key and region, requests will go to the public Speech service. Results from the Speech service might not be what you expect. Requests from disconnected containers will fail.
14+
> When you use the Speech service with containers, be sure to use [host authentication](../speech-container-howto.md#host-urls). If you configure the key and region, requests will go to the public Speech service. Results from the Speech service might not be what you expect. Requests from disconnected containers will fail.
1515
1616
::: zone pivot="programming-language-csharp"
1717
Instead of using this Azure-cloud initialization config:

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/cli.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,10 @@ spx recognize --file whatstheweatherlike.wav
3737
> The Speech CLI defaults to English. You can choose a different language [from the speech-to-text table](../../../../language-support.md?tabs=stt). For example, add `--source de-DE` to recognize German speech.
3838
3939
The Speech CLI shows a text transcription of the speech on the screen.
40+
41+
## Run and use a container
42+
43+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
44+
45+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
46+

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/cpp.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,11 @@ With [Custom Speech](../../../custom-speech-overview.md), you can upload your ow
207207
auto speechConfig = SpeechConfig::FromSubscription("YourSubscriptionKey", "YourServiceRegion");
208208
speechConfig->SetEndpointId("YourEndpointId");
209209
auto speechRecognizer = SpeechRecognizer::FromConfig(speechConfig);
210-
```
210+
```
211+
212+
## Run and use a container
213+
214+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
215+
216+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
217+

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/csharp.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,12 @@ speechConfig.EndpointId = "YourEndpointId";
284284
var speechRecognizer = new SpeechRecognizer(speechConfig);
285285
```
286286

287+
## Run and use a container
288+
289+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
290+
291+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
292+
287293
## Change how silence is handled
288294

289295
If a user is expected to speak faster or slower than usual, the default behaviors for non-speech silence in input audio may not result in what you expect. Common problems with silence handling include:

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/go.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,10 @@ go run quickstart
180180
```
181181

182182
For detailed information, see the [reference content for the `SpeechConfig` class](https://pkg.go.dev/github.com/Microsoft/[email protected]/speech#SpeechConfig) and the [reference content for the `SpeechRecognizer` class](https://pkg.go.dev/github.com/Microsoft/[email protected]/speech#SpeechRecognizer).
183+
184+
## Run and use a container
185+
186+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
187+
188+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
189+

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/java.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,3 +226,10 @@ SpeechConfig speechConfig = SpeechConfig.FromSubscription("YourSubscriptionKey",
226226
speechConfig.setEndpointId("YourEndpointId");
227227
SpeechRecognizer speechRecognizer = new SpeechRecognizer(speechConfig);
228228
```
229+
230+
## Run and use a container
231+
232+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
233+
234+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
235+

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/javascript.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,3 +206,10 @@ var speechConfig = SpeechSDK.SpeechConfig.fromSubscription("YourSubscriptionKey"
206206
speechConfig.endpointId = "YourEndpointId";
207207
var speechRecognizer = new SpeechSDK.SpeechRecognizer(speechConfig);
208208
```
209+
210+
## Run and use a container
211+
212+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
213+
214+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
215+

articles/cognitive-services/Speech-Service/includes/how-to/recognize-speech/objectivec.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,10 @@ SPXSpeechConfiguration *speechConfig = [[SPXSpeechConfiguration alloc] initWithS
2929
speechConfig.endpointId = "YourEndpointId";
3030
SPXSpeechRecognizer* speechRecognizer = [[SPXSpeechRecognizer alloc] init:speechConfig];
3131
```
32+
33+
## Run and use a container
34+
35+
Speech containers provide websocket-based query endpoint APIs that are accessed through the Speech SDK and Speech CLI. By default, the Speech SDK and Speech CLI use the public Speech service. To use the container, you need to change the initialization method. Use a container host URL instead of key and region.
36+
37+
For more information about containers, see the [speech containers](../../../speech-container-howto.md#host-urls) how-to guide.
38+

0 commit comments

Comments
 (0)