Skip to content

Commit 7148aba

Browse files
authored
Merge pull request #97718 from markamos/v-ammark-dec3
[Cog Svcs] Fix "Speech service" Terminology
2 parents 12fbbcb + dd52566 commit 7148aba

12 files changed

+26
-26
lines changed

articles/cognitive-services/Speech-Service/how-to-recognize-intents-from-speech-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Be sure you have the following items before you begin this guide:
3939

4040
## LUIS and speech
4141

42-
LUIS integrates with the Speech Services to recognize intents from speech. You don't need a Speech Services subscription, just LUIS.
42+
LUIS integrates with the Speech service to recognize intents from speech. You don't need a Speech service subscription, just LUIS.
4343

4444
LUIS uses three kinds of keys:
4545

@@ -51,7 +51,7 @@ LUIS uses three kinds of keys:
5151

5252
For this guide, you need the endpoint key type. This guide uses the example Home Automation LUIS app, which you can create by following the [Use prebuilt Home automation app](https://docs.microsoft.com/azure/cognitive-services/luis/luis-get-started-create-app) quickstart. If you've created a LUIS app of your own, you can use it instead.
5353

54-
When you create a LUIS app, LUIS automatically generates a starter key so you can test the app using text queries. This key doesn't enable the Speech Services integration and won't work with this guide. Create a LUIS resource in the Azure dashboard and assign it to the LUIS app. You can use the free subscription tier for this guide.
54+
When you create a LUIS app, LUIS automatically generates a starter key so you can test the app using text queries. This key doesn't enable the Speech service integration and won't work with this guide. Create a LUIS resource in the Azure dashboard and assign it to the LUIS app. You can use the free subscription tier for this guide.
5555

5656
After you create the LUIS resource in the Azure dashboard, log into the [LUIS portal](https://www.luis.ai/home), choose your application on the **My Apps** page, then switch to the app's **Manage** page. Finally, select **Keys and Endpoints** in the sidebar.
5757

@@ -123,7 +123,7 @@ The following sections include a discussion of the code.
123123
First, you need to create a speech configuration from your LUIS endpoint key and region. You can use speech configurations to create recognizers for the various capabilities of the Speech SDK. The speech configuration has multiple ways to specify the subscription you want to use; here, we use `FromSubscription`, which takes the subscription key and region.
124124

125125
> [!NOTE]
126-
> Use the key and region of your LUIS subscription, not of a Speech Services subscription.
126+
> Use the key and region of your LUIS subscription, not a Speech service subscription.
127127
128128
Next, create an intent recognizer using `new IntentRecognizer(config)`. Since the configuration already knows which subscription to use, you don't need to specify the subscription key and endpoint again when creating the recognizer.
129129

articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams-android.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Stream codec compressed audio with the Speech SDK on Android
33
titleSuffix: Azure Cognitive Services
4-
description: Learn how to stream compressed audio to Azure Speech Services with the Speech SDK on Android.
4+
description: Learn how to stream compressed audio to the Speech service with the Speech SDK on Android.
55
services: cognitive-services
66
author: amitkumarshukla
77
manager: nitinme
@@ -15,7 +15,7 @@ ms.author: amishu
1515

1616
# How to: Use codec compressed audio input with the Speech SDK on Android
1717

18-
The Speech SDK's **Compressed Audio Input Stream** API provides a way to stream compressed audio to the Speech Service using PullStream or PushStream.
18+
The Speech SDK's **Compressed Audio Input Stream** API provides a way to stream compressed audio to the Speech service using PullStream or PushStream.
1919

2020
> [!IMPORTANT]
2121
> Streaming compressed input audio is currently supported for [C++, C#, and Java on Linux (Ubuntu 16.04, Ubuntu 18.04, Debian 9)](how-to-use-codec-compressed-audio-input-streams.md). It is also supported for Java in Android and [Objective-C in iOS](how-to-use-codec-compressed-audio-input-streams-ios.md) platform.
@@ -129,7 +129,7 @@ Once the shared object (libgstreamer_android.so) is built application developer
129129

130130
## Example code using codec compressed audio input
131131

132-
To stream in a compressed audio format to the Speech Services, create `PullAudioInputStream` or `PushAudioInputStream`. Then, create an `AudioConfig` from an instance of your stream class, specifying the compression format of the stream.
132+
To stream in a compressed audio format to the Speech service, create `PullAudioInputStream` or `PushAudioInputStream`. Then, create an `AudioConfig` from an instance of your stream class, specifying the compression format of the stream.
133133

134134
Let's assume that you have an input stream class called `myPullStream` and are using OPUS/OGG. Your code may look like this:
135135

articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams-ios.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Stream codec compressed audio with the Speech SDK on iOS
33
titleSuffix: Azure Cognitive Services
4-
description: Learn how to stream compressed audio to Azure Speech Services with the Speech SDK on iOS.
4+
description: Learn how to stream compressed audio to the Speech service with the Speech SDK on iOS.
55
services: cognitive-services
66
author: chlandsi
77
manager: nitinme
@@ -15,7 +15,7 @@ ms.author: chlandsi
1515

1616
# How to: Use codec compressed audio input with the Speech SDK on iOS
1717

18-
The Speech SDK's **Compressed Audio Input Stream** API provides a way to stream compressed audio to the Speech Service using a pull or push stream.
18+
The Speech SDK's **Compressed Audio Input Stream** API provides a way to stream compressed audio to the Speech service using a pull or push stream.
1919

2020
> [!IMPORTANT]
2121
> Speech SDK version 1.7.0 or higher is required for streaming compressed audio on iOS. It is also supported for [C++, C#, and Java on Linux (Ubuntu 16.04, Ubuntu 18.04, Debian 9)](how-to-use-codec-compressed-audio-input-streams.md) and [Java in Android.](how-to-use-codec-compressed-audio-input-streams-android.md)
@@ -38,7 +38,7 @@ Open the project in Xcode and build it for the **Generic iOS Device** target --
3838

3939
The build step will generate a dynamic framework bundle with a dynamic library for all necessary architectures with the name of `GStreamerWrapper.framework`.
4040

41-
This framework must be included in all apps that use compressed audio streams with the Speech Services SDK.
41+
This framework must be included in all apps that use compressed audio streams with the Speech service SDK.
4242

4343
Apply the following settings in your Xcode project to accomplish this:
4444

@@ -50,7 +50,7 @@ Apply the following settings in your Xcode project to accomplish this:
5050

5151
## Example code using codec compressed audio input
5252

53-
To stream in a compressed audio format to the Speech Services, create a `SPXPullAudioInputStream` or `SPXPushAudioInputStream`.
53+
To stream in a compressed audio format to the Speech service, create a `SPXPullAudioInputStream` or `SPXPushAudioInputStream`.
5454

5555
The following snippet shows how to create an `SPXAudioConfiguration` from an instance of a `SPXPushAudioInputStream`, specifying mp3 as the compression format of the stream.
5656

articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Stream codec compressed audio with the Speech SDK - Speech Service
2+
title: Stream codec compressed audio with the Speech SDK - Speech service
33
titleSuffix: Azure Cognitive Services
4-
description: Learn how to stream compressed audio to Azure Speech Services with the Speech SDK. Available for C++, C#, and Java for Linux, Java in Android and Objective-C in iOS.
4+
description: Learn how to stream compressed audio to the Speech service with the Speech SDK. Available for C++, C#, and Java for Linux, Java in Android and Objective-C in iOS.
55
services: cognitive-services
66
author: amitkumarshukla
77
manager: nitinme
@@ -14,7 +14,7 @@ ms.author: amishu
1414

1515
# Using codec compressed audio input with the Speech SDK
1616

17-
The Speech SDK's **Compressed Audio Input Stream** API provides a way to stream compressed audio to the Speech Service using PullStream or PushStream.
17+
The Speech SDK's **Compressed Audio Input Stream** API provides a way to stream compressed audio to the Speech service using PullStream or PushStream.
1818

1919
> [!IMPORTANT]
2020
> Streaming compressed input audio is currently supported for C++, C#, and Java on Linux (Ubuntu 16.04, Ubuntu 18.04, Debian 9). It is also supported for [Java in Android](how-to-use-codec-compressed-audio-input-streams-android.md) and [Objective-C in iOS](how-to-use-codec-compressed-audio-input-streams-ios.md) platform.
@@ -38,7 +38,7 @@ sudo apt install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugin
3838

3939
## Example code using codec compressed audio input
4040

41-
To stream in a compressed audio format to the Speech Services, create `PullAudioInputStream` or `PushAudioInputStream`. Then, create an `AudioConfig` from an instance of your stream class, specifying the compression format of the stream.
41+
To stream in a compressed audio format to the Speech service, create `PullAudioInputStream` or `PushAudioInputStream`. Then, create an `AudioConfig` from an instance of your stream class, specifying the compression format of the stream.
4242

4343
Let's assume that you have an input stream class called `myPushStream` and are using OPUS/OGG. Your code may look like this:
4444

articles/cognitive-services/Speech-Service/how-to-use-conversation-transcription.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Real time Conversation Transcription (Preview) - Speech Service
2+
title: Real time Conversation Transcription (Preview) - Speech service
33
titleSuffix: Azure Cognitive Services
44
description: Learn how to use real-time Conversation Transcription with the Speech SDK. Available for C++, C#, and Java.
55
services: cognitive-services
@@ -14,7 +14,7 @@ ms.author: weixu
1414

1515
# Real time Conversation Transcription (Preview)
1616

17-
The Speech SDK's **ConversationTranscriber** API allows you to transcribe meetings and other conversations with the ability to add, remove, and identify multiple participants by streaming audio to Speech Services using `PullStream` or `PushStream`. This topic requires you to know how to use Speech-to-text with the Speech SDK (version 1.8.0 or later). For more information, see [What are Speech Services](overview.md).
17+
The Speech SDK's **ConversationTranscriber** API allows you to transcribe meetings and other conversations with the ability to add, remove, and identify multiple participants by streaming audio to the Speech service using `PullStream` or `PushStream`. This topic requires you to know how to use Speech-to-text with the Speech SDK (version 1.8.0 or later). For more information, see [What are Speech services](overview.md).
1818

1919
## Limitations
2020

@@ -32,7 +32,7 @@ The Speech Device SDK provides sample code in Java for real-time audio capture u
3232

3333
## Prerequisites
3434

35-
A Speech Services subscription. You can [get a Speech trial subscription](https://azure.microsoft.com/try/cognitive-services/) if you don't have one.
35+
A Speech service subscription. You can [get a Speech trial subscription](https://azure.microsoft.com/try/cognitive-services/) if you don't have one.
3636

3737
## Create voice signatures
3838

articles/cognitive-services/Speech-Service/how-to-use-logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Speech SDK logging - Speech Service
2+
title: Speech SDK logging - Speech service
33
titleSuffix: Azure Cognitive Services
44
description: Learn about how to enable logging in the Speech SDK (C++, C#, Python, Objective-C, Java).
55
services: cognitive-services

articles/cognitive-services/Speech-Service/includes/quickstarts/from-blob/cpp/cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech Service"
2+
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech service"
33
titleSuffix: Azure Cognitive Services
44
description: TBD
55
services: cognitive-services

articles/cognitive-services/Speech-Service/includes/quickstarts/from-blob/cpp/footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech Service"
2+
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech service"
33
titleSuffix: Azure Cognitive Services
44
description: TBD
55
services: cognitive-services

articles/cognitive-services/Speech-Service/includes/quickstarts/from-blob/cpp/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech Service"
2+
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech service"
33
titleSuffix: Azure Cognitive Services
44
description: TBD
55
services: cognitive-services

articles/cognitive-services/Speech-Service/includes/quickstarts/from-blob/cpp/windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech Service"
2+
title: "Quickstart: Recognize speech stored in blob storage, C++ - Speech service"
33
titleSuffix: Azure Cognitive Services
44
description: TBD
55
services: cognitive-services
@@ -70,7 +70,7 @@ Next, we'll generate the transcription request. Add this code to `recognizeSpeec
7070
[!code-cpp[](~/samples-cognitive-services-speech-sdk/quickstart/cpp/windows/from-blob/helloworld.cpp?range=199-203)]
7171

7272
## Send the request and check its status
73-
Now we post the request to the Speech Service and check the initial response code. This response code will simply indicate if the service has received the request. The service will return a Url in the response headers that's the location where it will store the transcription status.
73+
Now we post the request to the Speech service and check the initial response code. This response code will simply indicate if the service has received the request. The service will return a Url in the response headers that's the location where it will store the transcription status.
7474
[!code-cpp[](~/samples-cognitive-services-speech-sdk/quickstart/cpp/windows/from-blob/helloworld.cpp?range=204-216)]
7575

7676
## Wait for the transcription to complete

0 commit comments

Comments
 (0)