Skip to content

Commit 9ef56bc

Browse files
Merge pull request #250309 from TimShererWithAquent/us141588h
Azure OpenAI Freshness Pass - User Story: 141588
2 parents 3d39010 + 8ff641a commit 9ef56bc

29 files changed

+422
-385
lines changed

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-linux.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: include
11-
ms.date: 06/11/2022
11+
ms.date: 09/05/2023
1212
ms.author: eur
1313
---
1414

1515
This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) for Linux.
1616

1717
[!INCLUDE [linux-install-sdk](linux-install-sdk.md)]
18-

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-macos.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,38 +8,37 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: include
11-
ms.date: 06/11/2022
11+
ms.date: 09/05/2023
1212
ms.author: eur
1313
---
1414

15-
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 as a .zip file from https://aka.ms/csspeech/macosbinary.
15+
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.
1616

17-
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.
17+
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.
1818

19-
For example, if you want to use the directory `speechsdk` in your home directory, use a command like the following:
19+
For example, if you want to use the directory *speechsdk* in your home directory, use a command like the following example:
2020

21-
```sh
21+
```console
2222
export SPEECHSDK_ROOT="$HOME/speechsdk"
2323
```
2424

25-
1. Create the directory if it doesn't exist yet:
25+
1. Create the directory if it doesn't exist:
2626

27-
```sh
27+
```console
2828
mkdir -p "$SPEECHSDK_ROOT"
2929
```
3030

31-
1. Download and extract the .zip archive that contains the Speech SDK XCFramework:
31+
1. Download and extract the *.zip* archive that contains the Speech SDK XCFramework:
3232

33-
```sh
33+
```console
3434
wget -O SpeechSDK-macOS.zip https://aka.ms/csspeech/macosbinary
3535
unzip SpeechSDK-macOS.zip -d "$SPEECHSDK_ROOT"
3636
```
3737

3838
1. Validate the contents of the top-level directory of the extracted package:
3939

40-
```sh
40+
```console
4141
ls -l "$SPEECHSDK_ROOT"
4242
```
4343

44-
The directory listing should contain the third-party notice, license files, and a `MicrosoftCognitiveServicesSpeech.xcframework` directory.
45-
44+
The directory listing should contain the third-party notice, license files, and a *MicrosoftCognitiveServicesSpeech.xcframework* directory.

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-requirements.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: eric-urban
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 06/10/2022
5+
ms.date: 09/05/2023
66
ms.author: eur
77
---
88

@@ -16,7 +16,12 @@ You must install the [Microsoft Visual C++ Redistributable for Visual Studio 201
1616

1717
# [Linux](#tab/linux)
1818

19-
The Speech SDK for C++ only supports **Ubuntu 18.04/20.04/22.04**, **Debian 10/11**, **Red Hat Enterprise Linux (RHEL) 7/8**, and **CentOS 7/8** on the following architectures when used with Linux: x86 (Debian/Ubuntu), x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu)
19+
The Speech SDK for C++ only supports the following distributions on the x86 (Debian/Ubuntu), x64, ARM32 (Debian/Ubuntu), and ARM64 (Debian/Ubuntu) architectures:
20+
21+
- Ubuntu 18.04/20.04/22.04
22+
- Debian 10/11
23+
- Red Hat Enterprise Linux (RHEL) 7/8
24+
- CentOS 7/8
2025

2126
[!INCLUDE [Linux distributions](linux-distributions.md)]
2227

articles/ai-services/speech-service/includes/quickstarts/platform/cpp-windows.md

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ manager: nitinme
88
ms.service: cognitive-services
99
ms.subservice: speech-service
1010
ms.topic: include
11-
ms.date: 06/11/2022
11+
ms.date: 09/05/2023
1212
ms.author: eur
1313
ms.custom: ignite-fall-2021
1414
---
@@ -17,8 +17,8 @@ This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-s
1717

1818
This setup guide requires:
1919

20-
* [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/).
20+
- [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/).
2222

2323
### Create a project in Visual Studio and install the Speech SDK
2424

@@ -33,21 +33,21 @@ To create a Visual Studio project for C++ desktop development, you need to:
3333

3434
To start, make sure you're set up correctly in Visual Studio for C++ desktop development:
3535

36-
1. Open Visual Studio 2019 to display the start window.
36+
1. Open Visual Studio 2019 to display the start window.
3737

3838
1. Select **Continue without code** to go to the Visual Studio IDE.
3939

40-
![Screenshot that shows the Visual Studio 2019 start window.](~/articles/ai-services/speech-service/media/sdk/vs-start-window.png)
40+
:::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":::
4141

42-
1. From the Visual Studio menu bar, select **Tools** > **Get Tools and Features** to open Visual Studio Installer and view the **Modifying** dialog.
42+
1. From the Visual Studio menu bar, select **Tools** > **Get Tools and Features** to open Visual Studio Installer and view the **Modifying** dialog box.
4343

44-
1. On the **Workloads** tab, under **Windows**, find the **Desktop development with C++** workload. If the check box next to that workload isn't already selected, select it.
44+
1. On the **Workloads** tab, under **Windows**, find the **Desktop development with C++** workload. If that workload isn't already selected, select it.
4545

46-
![Screenshot that shows the Workloads tab of the Modifying dialog for Visual Studio Installer.](~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-workload.png)
46+
:::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":::
4747

48-
1. On the **Individual components** tab, find the **NuGet package manager** check box. If the check box isn't already selected, select it.
48+
1. On the **Individual components** tab, find the **NuGet package manager** check box. If it isn't already selected, select it.
4949

50-
1. In the corner, select the button labeled either **Close** or **Modify**. The button name varies depending on whether you selected any features for installation.
50+
1. In the corner, select either **Close** or **Modify**. The button name varies depending on whether you selected any features for installation.
5151

5252
If you select **Modify**, installation begins. The process might take a while.
5353

@@ -57,45 +57,44 @@ To start, make sure you're set up correctly in Visual Studio for C++ desktop dev
5757

5858
Next, create your project and select the target architecture:
5959

60-
1. On the Visual Studio menu bar, select **File** > **New** > **Project** to display the **Create a new project** window.
61-
60+
1. From the Visual Studio menu, select **File** > **New** > **Project** to display the **Create a new project** window.
61+
6262
1. Find and select **Console App**. Make sure that you select the C++ version of this project type, as opposed to C# or Visual Basic.
6363

6464
1. Select **Next**.
6565

66-
![Screenshot of selections for creating a console app project in Visual Studio.](~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-01-new-console-app.png)
66+
:::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":::
6767

68-
1. In the **Configure your new project** dialog, in **Project name**, enter **helloworld**.
68+
1. In the **Configure your new project** dialog box, in **Project name**, enter *helloworld*.
6969

70-
1. In **Location**, go to and select (or create) the folder where you want to save your project, and then select **Create**.
70+
1. In **Location**, go to and select or create the folder where you want to save your project, and then select **Create**.
7171

72-
![Screenshot of selections for configuring a new project in Visual Studio.](~/articles/ai-services/speech-service/media/sdk/vs-enable-cpp-configure-your-new-project.png)
72+
:::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":::
7373

74-
1. Select your target platform architecture. On the Visual Studio toolbar, find the **Solution Platforms** drop-down box. If you don't see it, select **View** > **Toolbars** > **Standard** to display the toolbar that contains **Solution Platforms**.
74+
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**.
7575

76-
If you're running 64-bit Windows, select **x64** in the drop-down box. 64-bit Windows can also run 32-bit applications, so you can choose **x86** if you prefer.
76+
If you're running 64-bit Windows, select **x64** in the dropdown box. 64-bit Windows can also run 32-bit applications, so you can choose **x86** if you prefer.
7777

7878
#### Install the Speech SDK by using Visual Studio
7979

8080
Finally, install the [Speech SDK NuGet package](https://aka.ms/csspeech/nuget) and reference the Speech SDK in your project:
8181

8282
1. In Solution Explorer, right-click your solution, and then select **Manage NuGet Packages for Solution** to go to the **NuGet - Solution** window.
8383

84-
1. Select **Browse**.
84+
1. Select **Browse**.
8585

8686
1. In **Package source**, select **nuget.org**.
8787

88-
![Screenshot that shows the Manage NuGet Packages for Solution dialog, with the Browse tab, search box, and package source highlighted.](~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-03-manage-nuget-packages.png)
88+
:::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":::
8989

9090
1. In the **Search** box, enter **Microsoft.CognitiveServices.Speech**. Choose that package after it appears in the search results.
9191

9292
1. In the package status pane next to the search results, select your **helloworld** project.
9393

9494
1. Select **Install**.
9595

96-
![Screenshot that shows the Microsoft.CognitiveServices.Speech package selected, with the project and the Install button highlighted.](~/articles/ai-services/speech-service/media/sdk/qs-cpp-windows-04-nuget-install-1.0.0.png)
97-
98-
1. In the **Preview Changes** dialog, select **OK**.
96+
:::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":::
9997

100-
1. In the **License Acceptance** dialog, view the license, and then select **I Accept**. The package installation begins. When installation is complete, the **Output** pane displays a message that's similar to the following text: `Successfully installed 'Microsoft.CognitiveServices.Speech 1.15.0' to helloworld`.
98+
1. In the **Preview Changes** dialog box, select **OK**.
10199

100+
1. In the **License Acceptance** dialog box, view the license, and then select **I Accept**. The package installation begins. When installation is complete, the **Output** pane displays a message that's similar to the following text: `Successfully installed 'Microsoft.CognitiveServices.Speech 1.15.0' to helloworld`.

articles/ai-services/speech-service/includes/quickstarts/platform/cpp.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,41 @@
22
author: eric-urban
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 06/11/2022
5+
ms.date: 09/05/2023
66
ms.author: eur
77
---
88

99
[!INCLUDE [Header](../../common/cpp.md)]
1010

11-
This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) for C++.
11+
This guide shows how to install the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) for C++.
1212

1313
## Platform requirements
1414

1515
[!INCLUDE [Requirements](cpp-requirements.md)]
1616

1717
## Install the Speech SDK for C++
1818

19-
The Speech SDK for C++ is available as a NuGet package. For more information, see <a href="https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech" target="_blank">Microsoft.CognitiveServices.Speech</a>.
19+
The Speech SDK for C++ is available as a NuGet package. For more information, see [Microsoft.CognitiveServices.Speech](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech).
2020

2121
# [Terminal](#tab/dotnetcli)
2222

23-
The Speech SDK for C# can be installed from the .NET CLI with the following `dotnet add` command:
23+
The Speech SDK for C# can be installed from the .NET CLI by using the following `dotnet add` command:
2424

2525
```dotnetcli
2626
dotnet add package Microsoft.CognitiveServices.Speech
2727
```
2828

2929
# [PowerShell](#tab/powershell)
3030

31-
The Speech SDK for C# can be installed with the following `Install-Package` command:
31+
The Speech SDK for C# can be installed by using the following `Install-Package` command:
3232

3333
```powershell
3434
Install-Package Microsoft.CognitiveServices.Speech
3535
```
3636

3737
---
3838

39-
You can follow a guide below for additional options.
40-
41-
**Choose your target environment**
39+
You can follow these guides for more options.
4240

4341
# [Linux](#tab/linux)
4442

@@ -52,4 +50,4 @@ You can follow a guide below for additional options.
5250

5351
[!INCLUDE [windows](cpp-windows.md)]
5452

55-
* * *
53+
---

0 commit comments

Comments
 (0)