You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/quickstart-custom-speech-commands-select-custom-voice.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,8 @@ In this article, we'll select a custom output voice for the application we creat
30
30
> 
31
31
32
32
> [!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).
34
35
35
36
Now the application will respond in the selected voice, instead of the default voice.
1. Copy the App ID from the publish notification for later use
49
+
1. Copy the Speech Resource Key for later use
48
50
49
51
## Step 2: Create a Visual Studio project
50
52
@@ -124,7 +126,7 @@ Add the code-behind source as follows:
124
126
125
127
1. In **Solution Explorer**, open the code-behind source file `MainPage.xaml.cs` (grouped under `MainPage.xaml`)
126
128
127
-
1. Replace the file's contents with the following code:
129
+
1. Replace the file's contents with the following code:
128
130
129
131
```csharp
130
132
usingMicrosoft.CognitiveServices.Speech;
@@ -293,6 +295,11 @@ Add the code-behind source as follows:
293
295
}
294
296
}
295
297
```
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
296
303
297
304
1. Add the following code to the method body of `InitializeDialogServiceConnector`
0 commit comments