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
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
19
+
17
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).
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/how-to-configure-rhel-centos-7.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,9 @@ ms.author: pankopon
12
12
13
13
# Configure RHEL/CentOS 7
14
14
15
+
> [!CAUTION]
16
+
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
17
+
15
18
To use the Speech SDK on Red Hat Enterprise Linux (RHEL) 7 x64 and CentOS 7 x64, update the C++ compiler (for C++ development) and the shared C++ runtime library on your system.
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/how-to/compressed-audio-input/gstreamer-linux.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,9 @@ gstreamer1.0-plugins-ugly
20
20
21
21
# [RHEL/CentOS](#tab/centos)
22
22
23
+
> [!CAUTION]
24
+
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
25
+
23
26
```sh
24
27
sudo yum install gstreamer1 \
25
28
gstreamer1-plugins-base \
@@ -29,7 +32,7 @@ gstreamer1-plugins-ugly-free
29
32
```
30
33
31
34
> [!NOTE]
32
-
> On RHEL/CentOS 7 and RHEL/CentOS 8, in case of using "ANY" compressed format, more GStreamer plug-ins need to be installed if the stream media format plug-in isn't in the preceding installed plug-ins.
35
+
> On RHEL/CentOS 7 and RHEL/CentOS 8, in case of using "ANY" compressed format, more GStreamer plug-ins need to be installed if the stream media format plug-in isn't in the preceding installed plug-ins.
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/quickstarts/platform/cpp-macos.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ author: markamos
6
6
manager: nitinme
7
7
ms.service: azure-ai-speech
8
8
ms.topic: include
9
-
ms.date: 09/05/2023
9
+
ms.date: 02/02/2024
10
10
ms.author: eur
11
11
---
12
12
13
13
This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) for C++ on macOS 10.14 or later. The steps include downloading the [required libraries and header files](https://aka.ms/csspeech/macosbinary) as a *.zip* file.
14
14
15
-
1. Choose a directory to which the Speech SDK files should be extracted, and set the `SPEECHSDK_ROOT` environment variable to point to that directory. This variable makes it easy to refer to the directory in future commands.
15
+
1. Choose a directory for the Speech SDK files. Set the `SPEECHSDK_ROOT` environment variable to point to that directory. This variable makes it easy to refer to the directory in future commands.
16
16
17
-
For example, if you want to use the directory *speechsdk* in your home directory, use a command like the following example:
17
+
To use the directory *speechsdk* in your home directory, run the following command:
18
18
19
19
```console
20
20
export SPEECHSDK_ROOT="$HOME/speechsdk"
@@ -39,4 +39,4 @@ This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-s
39
39
ls -l "$SPEECHSDK_ROOT"
40
40
```
41
41
42
-
The directory listing should contain the third-party notice, license files, and a *MicrosoftCognitiveServicesSpeech.xcframework* directory.
42
+
The directory listing should contain the partner notice, license files, and a *MicrosoftCognitiveServicesSpeech.xcframework* directory.
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/quickstarts/platform/cpp-requirements.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
author: eric-urban
3
3
ms.service: azure-ai-speech
4
4
ms.topic: include
5
-
ms.date: 09/05/2023
5
+
ms.date: 02/02/2024
6
6
ms.author: eur
7
7
---
8
8
@@ -12,10 +12,13 @@ The Speech SDK for C++ is compatible with Windows, Linux, and macOS.
12
12
13
13
On Windows, you must use the 64-bit target architecture. Windows 10 or later is required.
14
14
15
-
You must install the [Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, 2019, and 2022](/cpp/windows/latest-supported-vc-redist?view=msvc-170&preserve-view=true) for your platform. Installing this package for the first time might require a restart.
15
+
Install the [Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, 2019, and 2022](/cpp/windows/latest-supported-vc-redist?view=msvc-170&preserve-view=true) for your platform. Installing this package for the first time might require a restart.
16
16
17
17
# [Linux](#tab/linux)
18
18
19
+
> [!CAUTION]
20
+
> This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly.
21
+
19
22
The Speech SDK for C++ only supports the following distributions on the x86 (Debian/Ubuntu), x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) architectures:
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/quickstarts/platform/cpp-windows.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,16 @@ author: markamos
6
6
manager: nitinme
7
7
ms.service: azure-ai-speech
8
8
ms.topic: include
9
-
ms.date: 09/05/2023
9
+
ms.date: 02/02/2024
10
10
ms.author: eur
11
11
---
12
12
13
13
This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) for C++ on Windows desktop operating systems.
14
14
15
15
This setup guide requires:
16
16
17
-
-[Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for the Windows platform. Installing it for the first time might require a restart.
18
-
-[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/).
17
+
-[Microsoft Visual C++ Redistributable for Visual Studio](/cpp/windows/latest-supported-vc-redist) for the Windows platform. Installing it for the first time might require a restart.
### Create a project in Visual Studio and install the Speech SDK
21
21
@@ -34,17 +34,17 @@ To start, make sure you're set up correctly in Visual Studio for C++ desktop dev
34
34
35
35
1. Select **Continue without code** to go to the Visual Studio IDE.
36
36
37
-
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-start-window.png" alt-text="Screenshot that shows the Visual Studio 2019 start window." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-start-window.png":::
37
+
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-start-window-inline.png" alt-text="Screenshot that shows the Visual Studio 2019 start window." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-start-window.png":::
38
38
39
39
1. From the Visual Studio menu bar, select **Tools** > **Get Tools and Features** to open Visual Studio Installer and view the **Modifying** dialog box.
40
40
41
41
1. On the **Workloads** tab, under **Windows**, find the **Desktop development with C++** workload. If that workload isn't already selected, select it.
42
42
43
-
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-workload.png" alt-text="Screenshot that shows the Workloads tab of the Modifying dialog box for Visual Studio Installer." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-workload.png":::
43
+
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-workload-inline.png" alt-text="Screenshot that shows the Workloads tab of the Modifying dialog box for Visual Studio Installer." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-workload.png":::
44
44
45
-
1. On the **Individual components** tab, find the **NuGet package manager** check box. If it isn't already selected, select it.
45
+
1. On the **Individual components** tab, find **NuGet package manager**. If it isn't already selected, select it.
46
46
47
-
1.In the corner, select either **Close** or **Modify**. The button name varies depending on whether you selected any features for installation.
47
+
1.Select either **Close** or **Modify**. The button name varies depending on whether you selected any features for installation.
48
48
49
49
If you select **Modify**, installation begins. The process might take a while.
50
50
@@ -60,13 +60,13 @@ Next, create your project and select the target architecture:
60
60
61
61
1. Select **Next**.
62
62
63
-
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-01-new-console-app.png" alt-text="Screenshot of selections for creating a console app project in Visual Studio." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-01-new-console-app.png":::
63
+
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-01-new-console-app-inline.png" alt-text="Screenshot of selections for creating a console app project in Visual Studio." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-01-new-console-app.png":::
64
64
65
65
1. In the **Configure your new project** dialog box, in **Project name**, enter *helloworld*.
66
66
67
67
1. In **Location**, go to and select or create the folder where you want to save your project, and then select **Create**.
68
68
69
-
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-configure-your-new-project.png" alt-text="Screenshot of selections for configuring a new project in Visual Studio." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-configure-your-new-project.png":::
69
+
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-configure-your-new-project-inline.png" alt-text="Screenshot of selections for configuring a new project in Visual Studio." lightbox="~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-configure-your-new-project.png":::
70
70
71
71
1. Select your target platform architecture. On the Visual Studio toolbar, find the **Solution Platforms** dropdown box. If you don't see it, select **View** > **Toolbars** > **Standard** to display the toolbar that contains **Solution Platforms**.
72
72
@@ -82,15 +82,15 @@ Finally, install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget) a
82
82
83
83
1. In **Package source**, select **nuget.org**.
84
84
85
-
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-03-manage-nuget-packages.png" alt-text="Screenshot that shows the Manage NuGet Packages for Solution dialog box, with the Browse tab, search box, and package source highlighted." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-03-manage-nuget-packages.png":::
85
+
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-03-manage-nuget-packages-inline.png" alt-text="Screenshot that shows the Manage NuGet Packages for Solution dialog box, with the Browse tab, search box, and package source highlighted." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-03-manage-nuget-packages.png":::
86
86
87
87
1. In the **Search** box, enter **Microsoft.CognitiveServices.Speech**. Choose that package after it appears in the search results.
88
88
89
89
1. In the package status pane next to the search results, select your **helloworld** project.
90
90
91
91
1. Select **Install**.
92
92
93
-
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-04-nuget-install-1.0.0.png" alt-text="Screenshot that shows the Microsoft.CognitiveServices.Speech package selected, with the project and the Install button highlighted." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-04-nuget-install-1.0.0.png":::
93
+
:::image type="content" source="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-04-nuget-install-1.0.0-inline.png" alt-text="Screenshot that shows the Microsoft.CognitiveServices.Speech package selected, with the project and the Install button highlighted." lightbox="~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-04-nuget-install-1.0.0.png":::
94
94
95
95
1. In the **Preview Changes** dialog box, select **OK**.
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/includes/quickstarts/platform/csharp-dotnet-windows.md
+8-10Lines changed: 8 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,41 +6,39 @@ author: markamos
6
6
manager: nitinme
7
7
ms.service: azure-ai-speech
8
8
ms.topic: include
9
-
ms.date: 09/05/2023
9
+
ms.date: 02/02/2024
10
10
ms.author: eur
11
11
ms.custom: devx-track-dotnet
12
12
---
13
13
14
14
This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) for a .NET Framework (Windows) console app.
15
15
16
-
### Prerequisites
17
-
18
16
This guide requires:
19
17
20
18
-[Microsoft Visual C++ Redistributable for Visual Studio 2019](https://support.microsoft.com/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0) for the Windows platform. Installing it for the first time might require a restart.
21
-
-[Visual Studio 2019](https://visualstudio.microsoft.com/downloads/).
### Create a Visual Studio project and install the Speech SDK
24
22
25
23
You need to install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget) so you can reference it in your code. To do that, you might first need to create a **helloworld** project. If you already have a project with the **.NET desktop development** workload available, you can use that project and skip to [Use NuGet Package Manager to install the Speech SDK](#use-nuget-package-manager-to-install-the-speech-sdk).
26
24
27
25
#### Create a helloworld project
28
26
29
-
1. Open Visual Studio 2019.
27
+
1. Open Visual Studio.
30
28
31
-
1.In the **Start** window, select **Create a new project**.
29
+
1.Under **Get started**, select **Create a new project**.
32
30
33
-
1. In the **Create a new project** window, choose **Console App (.NET Framework)**, and then select **Next**.
31
+
1. In **Create a new project**, choose **Console App (.NET Framework)**, and then select **Next**.
34
32
35
-
1. In the **Configure your new project** window, enter *helloworld* in **Project name**, choose or create the directory path in **Location**, and then select **Create**.
33
+
1. In **Configure your new project**, for **Project name** enter *helloworld*, choose or create the directory path in **Location**, and then select **Create**.
36
34
37
35
1. From the Visual Studio menu bar, select **Tools** > **Get Tools and Features**. This step opens Visual Studio Installer and displays the **Modifying** dialog box.
38
36
39
-
1. Check whether the **.NET desktop development** workload is available. If the workload hasn't been installed, select it, and then select **Modify** to start the installation. It might take a few minutes to download and install.
37
+
1. Check whether the **.NET desktop development** workload is available. If the workload isn't installed, select it, and then select **Modify** to start the installation. It might take a few minutes to download and install.
40
38
41
39
If **.NET desktop development** is already selected, select **Close** to close the dialog box.
0 commit comments