Skip to content

Commit 1950452

Browse files
Merge pull request #265811 from TimShererWithAquent/us200722h
Freshness update: Azure AI Speech service
2 parents 17646f3 + 1f17936 commit 1950452

File tree

9 files changed

+68
-58
lines changed

9 files changed

+68
-58
lines changed

articles/ai-services/speech-service/includes/how-to/recognize-speech/cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ speechConfig->SetSpeechRecognitionLanguage("de-DE");
196196
197197
## Language identification
198198
199-
You can use [language identification](../../../language-identification.md?pivots=programming-language-cpp#speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
199+
You can use [language identification](../../../language-identification.md?pivots=programming-language-cpp#use-speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
200200
201-
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-cpp#speech-to-text).
201+
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-cpp#use-speech-to-text).
202202
203203
## Use a custom endpoint
204204

articles/ai-services/speech-service/includes/how-to/recognize-speech/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ The [`SpeechRecognitionLanguage`](/dotnet/api/microsoft.cognitiveservices.speech
271271

272272
## Language identification
273273

274-
You can use [language identification](../../../language-identification.md?pivots=programming-language-csharp#speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
274+
You can use [language identification](../../../language-identification.md?pivots=programming-language-csharp#use-speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
275275

276-
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-csharp#speech-to-text).
276+
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-csharp#use-speech-to-text).
277277

278278
## Use a custom endpoint
279279

articles/ai-services/speech-service/includes/how-to/recognize-speech/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ config.setSpeechRecognitionLanguage("fr-FR");
214214

215215
## Language identification
216216

217-
You can use [language identification](../../../language-identification.md?pivots=programming-language-java#speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
217+
You can use [language identification](../../../language-identification.md?pivots=programming-language-java#use-speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
218218

219-
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-java#speech-to-text).
219+
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-java#use-speech-to-text).
220220

221221
## Use a custom endpoint
222222

articles/ai-services/speech-service/includes/how-to/recognize-speech/javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ The [`speechRecognitionLanguage`](/javascript/api/microsoft-cognitiveservices-sp
194194

195195
## Language identification
196196

197-
You can use [language identification](../../../language-identification.md?pivots=programming-language-javascript#speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
197+
You can use [language identification](../../../language-identification.md?pivots=programming-language-javascript#use-speech-to-text) with speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
198198

199-
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-javascript#speech-to-text).
199+
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-javascript#use-speech-to-text).
200200

201201
## Use a custom endpoint
202202

articles/ai-services/speech-service/includes/how-to/recognize-speech/python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@ speech_config.speech_recognition_language="de-DE"
161161

162162
## Language identification
163163

164-
You can use [language identification](../../../language-identification.md?pivots=programming-language-python#speech-to-text) with Speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
164+
You can use [language identification](../../../language-identification.md?pivots=programming-language-python#use-speech-to-text) with Speech to text recognition when you need to identify the language in an audio source and then transcribe it to text.
165165

166-
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-python#speech-to-text).
166+
For a complete code sample, see [Language identification](../../../language-identification.md?pivots=programming-language-python#use-speech-to-text).
167167

168168
## Use a custom endpoint
169169

articles/ai-services/speech-service/includes/how-to/translate-speech/cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ For more information about speech synthesis, see [the basics of speech synthesis
299299

300300
## Multilingual translation with language identification
301301

302-
In many scenarios, you might not know which input languages to specify. Using [language identification](../../../language-identification.md?pivots=programming-language-cpp#speech-translation) you can detect up to 10 possible input languages and automatically translate to your target languages.
302+
In many scenarios, you might not know which input languages to specify. Using [language identification](../../../language-identification.md?pivots=programming-language-cpp#run-speech-translation) you can detect up to 10 possible input languages and automatically translate to your target languages.
303303

304304
The following example anticipates that `en-US` or `zh-CN` should be detected because they're defined in `AutoDetectSourceLanguageConfig`. Then, the speech will be translated to `de` and `fr` as specified in the calls to `AddTargetLanguage()`.
305305

@@ -310,7 +310,7 @@ auto autoDetectSourceLanguageConfig = AutoDetectSourceLanguageConfig::FromLangua
310310
auto translationRecognizer = TranslationRecognizer::FromConfig(speechTranslationConfig, autoDetectSourceLanguageConfig, audioConfig);
311311
```
312312
313-
For a complete code sample, see [language identification](../../../language-identification.md?pivots=programming-language-cpp#speech-translation).
313+
For a complete code sample, see [language identification](../../../language-identification.md?pivots=programming-language-cpp#run-speech-translation).
314314
315315
[speechtranslationconfig]: /cpp/cognitive-services/speech/translation-speechtranslationconfig
316316
[audioconfig]: /cpp/cognitive-services/speech/audio-audioconfig

articles/ai-services/speech-service/includes/how-to/translate-speech/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ For more information about speech synthesis, see [the basics of speech synthesis
306306

307307
## Multi-lingual translation with language identification
308308

309-
In many scenarios, you might not know which input languages to specify. Using [language identification](../../../language-identification.md?pivots=programming-language-csharp#speech-translation) you can detect up to 10 possible input languages and automatically translate to your target languages.
309+
In many scenarios, you might not know which input languages to specify. Using [language identification](../../../language-identification.md?pivots=programming-language-csharp#run-speech-translation) you can detect up to 10 possible input languages and automatically translate to your target languages.
310310

311311
The following example anticipates that `en-US` or `zh-CN` should be detected because they're defined in `AutoDetectSourceLanguageConfig`. Then, the speech is translated to `de` and `fr` as specified in the calls to `AddTargetLanguage()`.
312312

@@ -317,7 +317,7 @@ var autoDetectSourceLanguageConfig = AutoDetectSourceLanguageConfig.FromLanguage
317317
var translationRecognizer = new TranslationRecognizer(speechTranslationConfig, autoDetectSourceLanguageConfig, audioConfig)
318318
```
319319

320-
For a complete code sample, see [language identification](../../../language-identification.md?pivots=programming-language-csharp#speech-translation).
320+
For a complete code sample, see [language identification](../../../language-identification.md?pivots=programming-language-csharp#run-speech-translation).
321321

322322
[speechtranslationconfig]: /dotnet/api/microsoft.cognitiveservices.speech.speechtranslationconfig
323323
[audioconfig]: /dotnet/api/microsoft.cognitiveservices.speech.audio.audioconfig

articles/ai-services/speech-service/includes/how-to/translate-speech/python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,9 @@ For more information about speech synthesis, see [the basics of speech synthesis
293293

294294
## Multi-lingual translation with language identification
295295

296-
In many scenarios, you might not know which input languages to specify. Using [language identification](../../../language-identification.md?pivots=programming-language-python#speech-translation) you can detect up to 10 possible input languages and automatically translate to your target languages.
296+
In many scenarios, you might not know which input languages to specify. Using [language identification](../../../language-identification.md?pivots=programming-language-python#run-speech-translation) you can detect up to 10 possible input languages and automatically translate to your target languages.
297297

298-
For a complete code sample, see [language identification](../../../language-identification.md?pivots=programming-language-python#speech-translation).
298+
For a complete code sample, see [language identification](../../../language-identification.md?pivots=programming-language-python#run-speech-translation).
299299

300300
[speechtranslationconfig]: /python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.translation.speechtranslationconfig
301301
[audioconfig]: /python/api/azure-cognitiveservices-speech/azure.cognitiveservices.speech.audio.audioconfig

0 commit comments

Comments
 (0)