Skip to content

Commit f8d37e7

Browse files
Merge pull request #268144 from ChaseCrum/removenotice
removed notice - non applicable
2 parents 0c536e5 + 5666aff commit f8d37e7

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

articles/ai-services/speech-service/embedded-speech.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,7 @@ zone_pivot_groups: programming-languages-set-thirteen
1414

1515
# Embedded Speech
1616

17-
> [!CAUTION]
18-
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
19-
20-
Embedded Speech is designed for on-device [speech to text](speech-to-text.md) and [text to speech](text-to-speech.md) scenarios where cloud connectivity is intermittent or unavailable. For example, you can use embedded speech in industrial equipment, a voice enabled air conditioning unit, or a car that might travel out of range. You can also develop hybrid cloud and offline solutions. For scenarios where your devices must be in a secure environment like a bank or government entity, you should first consider [disconnected containers](../containers/disconnected-containers.md).
17+
Embedded Speech is designed for on-device [speech to text](speech-to-text.md) and [text to speech](text-to-speech.md) scenarios where cloud connectivity is intermittent or unavailable. For example, you can use embedded speech in industrial equipment, a voice enabled air conditioning unit, or a car that might travel out of range. You can also develop hybrid cloud and offline solutions. For scenarios where your devices must be in a secure environment like a bank or government entity, you should first consider [disconnected containers](../containers/disconnected-containers.md).
2118

2219
> [!IMPORTANT]
2320
> Microsoft limits access to embedded speech. You can apply for access through the Azure AI Speech [embedded speech limited access review](https://aka.ms/csgate-embedded-speech). For more information, see [Limited access for embedded speech](/legal/cognitive-services/speech-service/embedded-speech/limited-access-embedded-speech?context=/azure/ai-services/speech-service/context/context).
@@ -109,7 +106,7 @@ For Java embedded applications, add [client-sdk-embedded](https://mvnrepository.
109106
Follow these steps to install the Speech SDK for Java using Apache Maven:
110107

111108
1. Install [Apache Maven](https://maven.apache.org/install.html).
112-
1. Open a command prompt where you want the new project, and create a new `pom.xml` file.
109+
1. Open a command prompt where you want the new project, and create a new `pom.xml` file.
113110
1. Copy the following XML content into `pom.xml`:
114111
```xml
115112
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
@@ -167,13 +164,13 @@ For embedded speech, you need to download the speech recognition models for [spe
167164
168165
The following [speech to text](speech-to-text.md) models are available: da-DK, de-DE, en-AU, en-CA, en-GB, en-IE, en-IN, en-NZ, en-US, es-ES, es-MX, fr-CA, fr-FR, it-IT, ja-JP, ko-KR, pt-BR, pt-PT, zh-CN, zh-HK, and zh-TW.
169166
170-
All text to speech locales [here](language-support.md?tabs=tts) (except fa-IR, Persian (Iran)) are available out of box with either 1 selected female and/or 1 selected male voices. We welcome your input to help us gauge demand for more languages and voices.
167+
All text to speech locales [here](language-support.md?tabs=tts) (except fa-IR, Persian (Iran)) are available out of box with either 1 selected female and/or 1 selected male voices. We welcome your input to help us gauge demand for more languages and voices.
171168
172169
## Embedded speech configuration
173170
174-
For cloud connected applications, as shown in most Speech SDK samples, you use the `SpeechConfig` object with a Speech resource key and region. For embedded speech, you don't use a Speech resource. Instead of a cloud resource, you use the [models and voices](#models-and-voices) that you download to your local device.
171+
For cloud connected applications, as shown in most Speech SDK samples, you use the `SpeechConfig` object with a Speech resource key and region. For embedded speech, you don't use a Speech resource. Instead of a cloud resource, you use the [models and voices](#models-and-voices) that you download to your local device.
175172
176-
Use the `EmbeddedSpeechConfig` object to set the location of the models or voices. If your application is used for both speech to text and text to speech, you can use the same `EmbeddedSpeechConfig` object to set the location of the models and voices.
173+
Use the `EmbeddedSpeechConfig` object to set the location of the models or voices. If your application is used for both speech to text and text to speech, you can use the same `EmbeddedSpeechConfig` object to set the location of the models and voices.
177174
178175
::: zone pivot="programming-language-csharp"
179176
@@ -186,7 +183,7 @@ var embeddedSpeechConfig = EmbeddedSpeechConfig.FromPaths(paths.ToArray());
186183
187184
// For speech to text
188185
embeddedSpeechConfig.SetSpeechRecognitionModel(
189-
"Microsoft Speech Recognizer en-US FP Model V8",
186+
"Microsoft Speech Recognizer en-US FP Model V8",
190187
Environment.GetEnvironmentVariable("MODEL_KEY"));
191188
192189
// For text to speech
@@ -211,7 +208,7 @@ auto embeddedSpeechConfig = EmbeddedSpeechConfig::FromPaths(paths);
211208

212209
// For speech to text
213210
embeddedSpeechConfig->SetSpeechRecognitionModel((
214-
"Microsoft Speech Recognizer en-US FP Model V8",
211+
"Microsoft Speech Recognizer en-US FP Model V8",
215212
GetEnvironmentVariable("MODEL_KEY"));
216213

217214
// For text to speech
@@ -234,7 +231,7 @@ var embeddedSpeechConfig = EmbeddedSpeechConfig.fromPaths(paths);
234231
235232
// For speech to text
236233
embeddedSpeechConfig.setSpeechRecognitionModel(
237-
"Microsoft Speech Recognizer en-US FP Model V8",
234+
"Microsoft Speech Recognizer en-US FP Model V8",
238235
System.getenv("MODEL_KEY"));
239236
240237
// For text to speech

0 commit comments

Comments
 (0)