Skip to content

Commit 3032aef

Browse files
committed
Acrolinx sweep, feeling good about this now.
1 parent 1311383 commit 3032aef

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-browser.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.author: dapine
2323
2424
### Node.js Package Manager (NPM)
2525

26-
To install the JavaScript Speech SDK run the following `npm install` command below.
26+
To install the JavaScript Speech SDK, run the following `npm install` command below.
2727

2828
```nodejs
2929
npm install microsoft-cognitiveservices-speech-sdk

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ ms.author: dapine
2020

2121
#### C++ NuGet package
2222

23-
To install the C++ Speech SDK from the **Package Manager** run the following command.
23+
The C++ Speech SDK can be installed from the **Package Manager** with the following `Install-Package` command.
2424

2525
```powershell
2626
Install-Package Microsoft.CognitiveServices.Speech
2727
```
2828

2929
#### C++ binaries and header files
3030

31-
To install the C++ Speech SDK from the binaries, download the SDK as a <a href="https://aka.ms/csspeech/linuxbinary" target="_blank">.tar package <span class="docon docon-navigate-external x-hidden-focus"></span></a> and unpack the files in a directory of your choice. The following table shows the SDK folder structure (which include header files for both x86 and x64 target architectures):
31+
Alternatively, the C++ Speech SDK can be installed from binaries. Download the SDK as a <a href="https://aka.ms/csspeech/linuxbinary" target="_blank">.tar package <span class="docon docon-navigate-external x-hidden-focus"></span></a> and unpack the files in a directory of your choice. The contents of this package (which include header files for both x86 and x64 target architectures) are structured as follows:
3232

3333
| Path | Description |
3434
|------------------------|------------------------------------------------------|

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-dotnet.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: dapine
88

99
:::row:::
1010
:::column span="3":::
11-
The .NET Speech SDK is available as a NuGet package and implements .NET Standard 2.0, for more information see <a href="https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech" target="_blank">Microsoft.CognitiveServices.Speech <span class="docon docon-navigate-external x-hidden-focus"></span></a>.
11+
The .NET Speech SDK is available as a NuGet package and implements .NET Standard 2.0, for more information, see <a href="https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech" target="_blank">Microsoft.CognitiveServices.Speech <span class="docon docon-navigate-external x-hidden-focus"></span></a>.
1212
:::column-end:::
1313
:::column:::
1414
<br>
@@ -20,13 +20,13 @@ ms.author: dapine
2020

2121
#### C# NuGet Package
2222

23-
To install the .NET Speech SDK from the **.NET Core CLI** run the following command.
23+
The .NET Speech SDK can be installed from the **.NET Core CLI** with the following `dotnet add` command.
2424

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

29-
To install the .NET Speech SDK from the **Package Manager** run the following command.
29+
The .NET Speech SDK can be installed from the **Package Manager** with the following `Install-Package` command.
3030

3131
```powershell
3232
Install-Package Microsoft.CognitiveServices.Speech

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-ios.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: dapine
88

99
:::row:::
1010
:::column span="3":::
11-
When developing for iOS, there are two Speech SDKs available. The Objective-C Speech SDK is available natively as an iOS CocoaPod package, or the .NET Speech SDK could be used with Xamarin.iOS as it implements .NET Standard 2.0.
11+
When developing for iOS, there are two Speech SDKs available. The Objective-C Speech SDK is available natively as an iOS CocoaPod package. Alternatively, the .NET Speech SDK could be used with Xamarin.iOS as it implements .NET Standard 2.0.
1212
:::column-end:::
1313
:::column:::
1414
<br>

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.author: dapine
2323

2424
### System requirements
2525

26-
For a native applications, the Speech SDK relies on `libMicrosoft.CognitiveServices.Speech.core.so`. Make sure the target architecture (x86, x64) matches the application. Depending on the Linux version, additional dependencies may be required.
26+
For a native application, the Speech SDK relies on `libMicrosoft.CognitiveServices.Speech.core.so`. Make sure the target architecture (x86, x64) matches the application. Depending on the Linux version, additional dependencies may be required.
2727

2828
- The shared libraries of the GNU C library (including the POSIX Threads Programming library, `libpthreads`)
2929
- The OpenSSL library (`libssl.so.1.0.0` or `libssl.so.1.0.2`)

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.author: dapine
2323
2424
### Node.js Package Manager (NPM)
2525

26-
To install the JavaScript Speech SDK run the following `npm install` command below.
26+
To install the JavaScript Speech SDK, run the following `npm install` command below.
2727

2828
```nodejs
2929
npm install microsoft-cognitiveservices-speech-sdk

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: dapine
88

99
:::row:::
1010
:::column span="3":::
11-
The Python Speech SDK is available as a Python Package Index (PyPI) module, for more information see <a href="https://pypi.org/project/azure-cognitiveservices-speech/" target="_blank">azure-cognitiveservices-speech <span class="docon docon-navigate-external x-hidden-focus"></span></a>. The Python Speech SDK is compatible with Windows, Linux, and macOS.
11+
The Python Speech SDK is available as a Python Package Index (PyPI) module, for more information, see <a href="https://pypi.org/project/azure-cognitiveservices-speech/" target="_blank">azure-cognitiveservices-speech <span class="docon docon-navigate-external x-hidden-focus"></span></a>. The Python Speech SDK is compatible with Windows, Linux, and macOS.
1212
:::column-end:::
1313
:::column:::
1414
<br>

articles/cognitive-services/Speech-Service/includes/get-speech-sdk-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: dapine
88

99
:::row:::
1010
:::column span="3":::
11-
The Speech SDK supports Windows 10 and Windows Server 2016, or later versions. Earlier versions are **not** officially supported, however; it is possible to use parts of the Speech SDK with earlier versions of Windows.
11+
The Speech SDK supports Windows 10 and Windows Server 2016, or later versions. Earlier versions are **not** officially supported. It is possible to use parts of the Speech SDK with earlier versions of Windows, although it's not advised.
1212
:::column-end:::
1313
:::column:::
1414
<br>

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,29 @@ ms.author: dapine
1414

1515
# About the Speech SDK
1616

17-
The Speech software development kit (SDK) exposes many of the Speech service capabilities, making it easier to develop speech-enabled applications. There are various SDKs available in many programming languages. All of the Speech SDKs are cross-platform, with the exception of the Objective-C / Swift SDK (which is only available on iOS and macOS).
17+
The Speech software development kit (SDK) exposes many of the Speech service capabilities, making it easier to develop speech-enabled applications. There are various SDKs available in many programming languages. All of the Speech SDKs are cross-platform, with the exception of the Objective-C SDK (which is only available on iOS and macOS).
1818

1919
[!INCLUDE [Speech SDK Platforms](../../../includes/cognitive-services-speech-service-speech-sdk-platforms.md)]
2020

2121
## Scenario capabilities
2222

23-
The Speech SDK exposes many features from the Speech service, but not all of them. The capabilities of the Speech SDK are often associated to scenarios. It's ideal for both real-time and non-real-time scenarios, utilizing local devices, files, and even input and output streams. There are [known limitations](#known-limitations) with the Speech SDK, where feature gaps exist. When a scenario is unachievable with the Speech SDK, look for a REST API alternative.
23+
The Speech SDK exposes many features from the Speech service, but not all of them. The capabilities of the Speech SDK are often associated to scenarios. It's ideal for both real-time and non-real-time scenarios, using local devices, files, and even input and output streams. There are [known limitations](#known-limitations) with the Speech SDK, where feature gaps exist. When a scenario is unachievable with the Speech SDK, look for a REST API alternative.
2424

2525
### Speech-to-text
2626

2727
Speech-to-text (also known as *speech recognition*) transcribes audio streams to text that your applications, tools, or devices can consume or display. Use speech-to-text with [Language Understanding (LUIS)](https://docs.microsoft.com/azure/cognitive-services/luis) to derive user intents from transcribed speech and act on voice commands. For more information, see [Speech-to-text basics](speech-to-text-basics.md).
2828

2929
### Text-to-speech
3030

31-
Text-to-speech (also known as *speech synthesis*) converts input text into human-like synthesized speech using the [Speech Synthesis Markup Language (SSML)](speech-synthesis-markup.md). Choose from standard or neural voices, for more information, see [Text-to-speech language and voice support](language-support.md#text-to-speech).
31+
Text-to-speech (also known as *speech synthesis*) converts text into human-like synthesized speech, using the [Speech Synthesis Markup Language (SSML)](speech-synthesis-markup.md). For more information on standard or neural voices, see [Text-to-speech language and voice support](language-support.md#text-to-speech).
3232

3333
### Keyword spotting
3434

3535
The concept of [keyword spotting](speech-devices-sdk-create-kws.md) is supported in the Speech SDK. Keyword spotting is the act of identifying a keyword in speech, followed by an action upon hearing the keyword. For example, "Hey Cortana" would activate the Cortana assistant.
3636

3737
### Voice assistants
3838

39-
Voice assistants using the Speech service empower developers to create natural, human-like conversational interfaces for their applications and experiences. The voice assistant service provides fast, reliable interaction between a device and an assistant implementation that uses the Bot Framework's Direct Line Speech channel or the integrated Custom Commands (Preview) service for task completion.
39+
Voice assistants using the Speech SDK enable developers to create natural, human-like conversational interfaces for their applications and experiences. The voice assistant service provides fast, reliable interaction between a device and an assistant. The implementation uses the Bot Framework's Direct Line Speech channel or the integrated Custom Commands (Preview) service for task completion.
4040

4141
### Meeting scenarios
4242

@@ -64,15 +64,15 @@ Several of the Speech SDKs' support codec compressed audio input streams. For mo
6464

6565
## Known limitations
6666

67-
While the Speech SDK covers many feature capabilities with various scenarios, there are known limitations. Certain functionalities are only available from the Azure portal or the REST API. An example of this is endpoint management. There are several other limitations to consider.
67+
While the Speech SDK covers many feature capabilities with various scenarios, there are known limitations. Certain functionalities are only available from the Azure portal, Custom Speech portal, Custom voice portal, or the REST API. As an example, endpoint management is not possible through the Speech SDK.
6868

6969
### Batch transcription
7070

71-
Batch transcription enables asynchronous speech-to-text transcription of large volumes of data. This is a REST-based service however, which uses the same endpoint as customization and model management. Batch transcription is only possible from the REST API.
71+
Batch transcription enables asynchronous speech-to-text transcription of large volumes of data. It is a REST-based service however, which uses the same endpoint as customization and model management. Batch transcription is only possible from the REST API.
7272

7373
### Custom Speech-to-text
7474

75-
If you are using speech-to-text for recognition and transcription in a unique environment, you can create and train custom acoustic, language, and pronunciation models to address ambient noise or industry-specific vocabulary. The creation and management of Custom Speech models is only available through the [Custom Speech Portal](https://aka.ms/customspeech), and not the Speech SDK. However, once the Custom Speech model is published it can be consumed by the Speech SDK.
75+
When using speech-to-text for recognition and transcription in a unique environment, you can create and train custom acoustic, language, and pronunciation models to address ambient noise or industry-specific vocabulary. The creation and management of Custom Speech models is only available through the [Custom Speech Portal](https://aka.ms/customspeech), and not the Speech SDK. However, once the Custom Speech model is published it can be consumed by the Speech SDK.
7676

7777
### Custom Text-to-speech
7878

0 commit comments

Comments
 (0)