Skip to content

Commit 696f5dc

Browse files
committed
link to samples
1 parent 0dcd8fe commit 696f5dc

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

articles/cognitive-services/Speech-Service/embedded-speech.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ embeddedSpeechConfig.SetSpeechSynthesisVoice(
9393
embeddedSpeechConfig.SetSpeechSynthesisOutputFormat(SpeechSynthesisOutputFormat.Riff24Khz16BitMonoPcm);
9494
```
9595

96+
You can find ready to use embedded speech samples at [GitHub](https://aka.ms/csspeech/samples).
97+
98+
- [C# (.NET 6.0)](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp/dotnetcore/embedded-speech)
99+
- [C# for Unity](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp/unity/embedded-speech)
96100
::: zone-end
97101

98102
::: zone pivot="programming-language-cpp"
@@ -119,6 +123,7 @@ embeddedSpeechConfig->SetSpeechSynthesisVoice(
119123
embeddedSpeechConfig->SetSpeechSynthesisOutputFormat(SpeechSynthesisOutputFormat::Riff24Khz16BitMonoPcm);
120124
```
121125
126+
You can find ready to use embedded speech samples at [GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/cpp/embedded-speech)
122127
::: zone-end
123128
124129
::: zone pivot="programming-language-java"
@@ -142,15 +147,11 @@ embeddedSpeechConfig.setSpeechSynthesisVoice(
142147
embeddedSpeechConfig.setSpeechSynthesisOutputFormat(SpeechSynthesisOutputFormat.Riff24Khz16BitMonoPcm);
143148
```
144149

145-
::: zone-end
146-
147150
You can find ready to use embedded speech samples at [GitHub](https://aka.ms/csspeech/samples).
148-
149-
- [C# (.NET 6.0)](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp/dotnetcore/embedded-speech)
150-
- [C# for Unity](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp/unity/embedded-speech)
151-
- [C++](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/cpp/embedded-speech)
152151
- [Java (JRE)](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/java/jre/embedded-speech)
153152
- [Java for Android](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/java/android/embedded-speech)
153+
::: zone-end
154+
154155

155156
## Hybrid speech
156157

@@ -162,7 +163,7 @@ With hybrid speech configuration for [text-to-speech](text-to-speech.md) (voices
162163

163164
## Cloud speech
164165

165-
For cloud speech, you use the `SpeechConfig` object, as shown in the [speech-to-text quickstart](get-started-speech-to-text.md) and [text-to-speech quickstart](get-started-text-to-speech.md). To run the quickstarts, you can replace `SpeechConfig` with `EmbeddedSpeechConfig` or `HybridSpeechConfig`. Most of the other speech recognition and synthesis code are the same, whether using cloud, embedded, or hybrid configuration.
166+
For cloud speech, you use the `SpeechConfig` object, as shown in the [speech-to-text quickstart](get-started-speech-to-text.md) and [text-to-speech quickstart](get-started-text-to-speech.md). To run the quickstarts for embedded speech, you can replace `SpeechConfig` with `EmbeddedSpeechConfig` or `HybridSpeechConfig`. Most of the other speech recognition and synthesis code are the same, whether using cloud, embedded, or hybrid configuration.
166167

167168
## Next steps
168169

0 commit comments

Comments
 (0)