Skip to content

Commit c6f98b7

Browse files
committed
update
1 parent 4474e13 commit c6f98b7

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed
17.1 KB
Loading
-109 KB
Loading

articles/cognitive-services/Speech-Service/quickstart-custom-speech-commands-select-custom-voice.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ In this article, we'll select a custom output voice for the application we creat
3030
> ![Sample Sentences with parameters](media/custom-speech-commands/select-custom-voice.png)
3131
3232
> [!NOTE]
33-
> Custom voices can be created from the Custom Voice project page. Select the **Speech Studio** link, then **Custom Voice** to get started.
33+
> - For **Public voices**, **Neural types** are only available for specific regions. To check availability, see [standard and neural voices by region/endpoint](../../../includes/cognitive-services-speech-service-endpoints-text-to-speech.md#standard-and-neural-voices).
34+
> - For **Custom voices**, they can be created from the Custom Voice project page. See [Get Started with Custom Voice](./how-to-custom-voice.md).
3435
3536
Now the application will respond in the selected voice, instead of the default voice.
3637

articles/cognitive-services/Speech-Service/quickstart-custom-speech-commands-speech-sdk.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ You'll also need:
3232

3333
- [Visual Studio 2019](https://visualstudio.microsoft.com/downloads/)
3434
- An Azure subscription key for Speech Services. [Get one for free](get-started.md) or create it on the [Azure portal](https://portal.azure.com)
35+
- [Enable your device for development](https://docs.microsoft.com/windows/uwp/get-started/enable-your-device-for-development)
3536

3637
## Optional: Get started fast
3738

@@ -45,6 +46,7 @@ This quickstart describes, step by step, how to make a client application to con
4546
> ![Publish application](media/custom-speech-commands/fulfill-sdk-publish-application.png)
4647
4748
1. Copy the App ID from the publish notification for later use
49+
1. Copy the Speech Resource Key for later use
4850

4951
## Step 2: Create a Visual Studio project
5052

@@ -124,7 +126,7 @@ Add the code-behind source as follows:
124126

125127
1. In **Solution Explorer**, open the code-behind source file `MainPage.xaml.cs` (grouped under `MainPage.xaml`)
126128

127-
1. Replace the file's contents with the following code:
129+
1. Replace the file's contents with the following code:
128130

129131
```csharp
130132
using Microsoft.CognitiveServices.Speech;
@@ -293,6 +295,11 @@ Add the code-behind source as follows:
293295
}
294296
}
295297
```
298+
> [!NOTE]
299+
> If you see error: "The type 'Object' is defined in an assembly that is not referenced"
300+
> - Right-client your solution.
301+
> - Choose **Manage NuGet Packages for Solution**, Select **Updates**
302+
> - If you see **Microsoft.NETCore.UniversalWindowsPlatform** in the update list, Update **Microsoft.NETCore.UniversalWindowsPlatform** to newest version
296303
297304
1. Add the following code to the method body of `InitializeDialogServiceConnector`
298305

0 commit comments

Comments
 (0)