Skip to content

Commit bdf4062

Browse files
committed
Fixed URLs
1 parent c42652c commit bdf4062

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

articles/cognitive-services/Speech-Service/includes/speech-devices-sdk-android-quickstart.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ ms.author: dapine
99

1010
In this quickstart, you'll learn how to use the Speech Devices SDK for Android to build a speech-enabled product or use it as a [Conversation Transcription](../conversation-transcription-service.md) device.
1111

12-
This guide requires an [Azure Cognitive Services](../get-started.md) account with a Speech service resource. If you don't have an account, you can use the [free trial](../https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
12+
This guide requires an [Azure Cognitive Services](../get-started.md) account with a Speech service resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
1313

14-
The source code for the sample application is included with the Speech Devices SDK. It's also [available on GitHub](../https://github.com/Azure-Samples/Cognitive-Services-Speech-Devices-SDK).
14+
The source code for the sample application is included with the Speech Devices SDK. It's also [available on GitHub](https://github.com/Azure-Samples/Cognitive-Services-Speech-Devices-SDK).
1515

1616
## Prerequisites
1717

1818
Before you start using the Speech Devices SDK, you'll need to:
1919

2020
- Follow the instructions provided with your [development kit](../get-speech-devices-sdk.md) to power on the device.
2121

22-
- Download the latest version of the [Speech Devices SDK](../https://aka.ms/sdsdk-download), and extract the .zip to your working directory.
22+
- Download the latest version of the [Speech Devices SDK](https://aka.ms/sdsdk-download), and extract the .zip to your working directory.
2323

2424
> [!NOTE]
2525
> This quickstart assumes that the app is extracted to C:\SDSDK\Android-Sample-Release
@@ -28,11 +28,11 @@ Before you start using the Speech Devices SDK, you'll need to:
2828

2929
- If you plan to use the Conversation Transcription you must use a [circular microphone device](../get-speech-devices-sdk.md) and this feature is currently only available for "en-US" and "zh-CN" in regions, “centralus” and “eastasia”. You must have a speech key in one of those regions to use Conversation Transcription.
3030

31-
- If you plan to use the Speech service to identify intents (or actions) from user utterances, you'll need a [Language Understanding Service (LUIS)](../https://docs.microsoft.com/azure/cognitive-services/luis/azureibizasubscription) subscription. To learn more about LUIS and intent recognition, see [Recognize speech intents with LUIS, C#](../https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp).
31+
- If you plan to use the Speech service to identify intents (or actions) from user utterances, you'll need a [Language Understanding Service (LUIS)](https://docs.microsoft.com/azure/cognitive-services/luis/azureibizasubscription) subscription. To learn more about LUIS and intent recognition, see [Recognize speech intents with LUIS, C#](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp).
3232

33-
You can [create a simple LUIS model](../https://docs.microsoft.com/azure/cognitive-services/luis/) or use the sample LUIS model, LUIS-example.json. The sample LUIS model is available from the [Speech Devices SDK download site](../https://aka.ms/sdsdk-luis). To upload your model's JSON file to the [LUIS portal](../https://www.luis.ai/home), select **Import new app**, and then select the JSON file.
33+
You can [create a simple LUIS model](https://docs.microsoft.com/azure/cognitive-services/luis/) or use the sample LUIS model, LUIS-example.json. The sample LUIS model is available from the [Speech Devices SDK download site](https://aka.ms/sdsdk-luis). To upload your model's JSON file to the [LUIS portal](https://www.luis.ai/home), select **Import new app**, and then select the JSON file.
3434

35-
- Install [Android Studio](../https://developer.android.com/studio/) and [Vysor](../https://vysor.io/download/) on your PC.
35+
- Install [Android Studio](https://developer.android.com/studio/) and [Vysor](https://vysor.io/download/) on your PC.
3636

3737
## Set up the device
3838

@@ -94,7 +94,7 @@ To validate your development kit setup, build and install the sample application
9494
implementation'com.microsoft.cognitiveservices.speech:client-sdk:1.9.0'
9595
```
9696

97-
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](../https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
97+
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
9898

9999
For speech and LUIS, your information goes into MainActivity.java:
100100

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ ms.date: 02/20/2020
77
ms.author: dapine
88
---
99

10-
In this quickstart, you'll learn how to use the Speech Devices SDK for Linux to build a speech-enabled product or use it as a [Conversation Transcription](../conversation-transcription-service.md) device. Currently only the [Azure Kinect DK](../https://azure.microsoft.com/services/kinect-dk/) is supported.
10+
In this quickstart, you'll learn how to use the Speech Devices SDK for Linux to build a speech-enabled product or use it as a [Conversation Transcription](../conversation-transcription-service.md) device. Currently only the [Azure Kinect DK](https://azure.microsoft.com/services/kinect-dk/) is supported.
1111

1212
The application is built with the Speech SDK package, and the Eclipse Java IDE (v4) on 64-bit Linux (Ubuntu 16.04, Ubuntu 18.04, Debian 9). It runs on a 64-bit Java 8 runtime environment (JRE).
1313

14-
This guide requires an [Azure Cognitive Services](../get-started.md) account with a Speech service resource. If you don't have an account, you can use the [free trial](../https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
14+
This guide requires an [Azure Cognitive Services](../get-started.md) account with a Speech service resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
1515

16-
The source code for the [sample application](../https://aka.ms/sdsdk-download-JRE) is included with the Speech Devices SDK. It's also [available on GitHub](../https://github.com/Azure-Samples/Cognitive-Services-Speech-Devices-SDK).
16+
The source code for the [sample application](https://aka.ms/sdsdk-download-JRE) is included with the Speech Devices SDK. It's also [available on GitHub](https://github.com/Azure-Samples/Cognitive-Services-Speech-Devices-SDK).
1717

1818
## Prerequisites
1919

2020
This quickstart requires:
2121

2222
* Operating System: 64-bit Linux (Ubuntu 16.04, Ubuntu 18.04, Debian 9)
23-
* [Azure Kinect DK](../https://azure.microsoft.com/services/kinect-dk/)
24-
* [Eclipse Java IDE](../https://www.eclipse.org/downloads/)
25-
* [Java 8](../https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) or [JDK 8](../https://www.oracle.com/technetwork/java/javase/downloads/index.html) only.
23+
* [Azure Kinect DK](https://azure.microsoft.com/services/kinect-dk/)
24+
* [Eclipse Java IDE](https://www.eclipse.org/downloads/)
25+
* [Java 8](https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) or [JDK 8](https://www.oracle.com/technetwork/java/javase/downloads/index.html) only.
2626
* An Azure subscription key for the Speech service. [Get one for free](../get-started.md).
27-
* Download the latest version of the [Speech Devices SDK](../https://aka.ms/sdsdk-download-JRE) for Java, and extract the .zip to your working directory.
27+
* Download the latest version of the [Speech Devices SDK](https://aka.ms/sdsdk-download-JRE) for Java, and extract the .zip to your working directory.
2828
> [!NOTE]
2929
> This quickstart assumes that the app is extracted to /home/wcaltest/JRE-Sample-Release
3030
@@ -46,7 +46,7 @@ Make sure these dependencies are installed before starting Eclipse.
4646

4747
Conversation Transcription is currently only available for "en-US" and "zh-CN", in the “centralus” and “eastasia” regions. You must have a speech key in one of those regions to use Conversation Transcription.
4848

49-
If you plan to use the intents you'll need a [Language Understanding Service (LUIS)](../https://docs.microsoft.com/azure/cognitive-services/luis/azureibizasubscription) subscription. To learn more about LUIS and intent recognition, see [Recognize speech intents with LUIS, C#](../https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp). A [sample LUIS model](../https://aka.ms/sdsdk-luis) is available for this app.
49+
If you plan to use the intents you'll need a [Language Understanding Service (LUIS)](https://docs.microsoft.com/azure/cognitive-services/luis/azureibizasubscription) subscription. To learn more about LUIS and intent recognition, see [Recognize speech intents with LUIS, C#](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp). A [sample LUIS model](https://aka.ms/sdsdk-luis) is available for this app.
5050

5151
## Create and configure the project
5252

@@ -104,7 +104,7 @@ If you plan to use the intents you'll need a [Language Understanding Service (LU
104104

105105
## Configure the sample application
106106

107-
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](../https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
107+
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
108108

109109
For speech and LUIS, your information goes into `FunctionsList.java`:
110110

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@ ms.date: 02/20/2020
77
ms.author: dapine
88
---
99

10-
In this quickstart, you'll learn how to use the Speech Devices SDK for Windows to build a speech-enabled product or use it as a [Conversation Transcription](../conversation-transcription-service.md) device. For Conversation Transcription only the [Azure Kinect DK](../https://azure.microsoft.com/services/kinect-dk/) is supported. For other speech use linear mic arrays that provide a microphone array geometry are supported.
10+
In this quickstart, you'll learn how to use the Speech Devices SDK for Windows to build a speech-enabled product or use it as a [Conversation Transcription](../conversation-transcription-service.md) device. For Conversation Transcription only the [Azure Kinect DK](https://azure.microsoft.com/services/kinect-dk/) is supported. For other speech use linear mic arrays that provide a microphone array geometry are supported.
1111

1212
The application is built with the Speech SDK package, and the Eclipse Java IDE (v4) on 64-bit Windows. It runs on a 64-bit Java 8 runtime environment (JRE).
1313

14-
This guide requires an [Azure Cognitive Services](../get-started.md) account with a Speech service resource. If you don't have an account, you can use the [free trial](../https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
14+
This guide requires an [Azure Cognitive Services](../get-started.md) account with a Speech service resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
1515

16-
The source code for the [sample application](../https://aka.ms/sdsdk-download-JRE) is included with the Speech Devices SDK. It's also [available on GitHub](../https://github.com/Azure-Samples/Cognitive-Services-Speech-Devices-SDK).
16+
The source code for the [sample application](https://aka.ms/sdsdk-download-JRE) is included with the Speech Devices SDK. It's also [available on GitHub](https://github.com/Azure-Samples/Cognitive-Services-Speech-Devices-SDK).
1717

1818
## Prerequisites
1919

2020
This quickstart requires:
2121

2222
* Operating System: 64-bit Windows
23-
* A microphone array such as [Azure Kinect DK](../https://azure.microsoft.com/services/kinect-dk/)
24-
* [Eclipse Java IDE](../https://www.eclipse.org/downloads/)
25-
* [Java 8](../https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) or [JDK 8](../https://www.oracle.com/technetwork/java/javase/downloads/index.html) only.
26-
* [Microsoft Visual C++ Redistributable](../https://support.microsoft.com/help/2977003/the-latest-supported-visual-c-downloads)
23+
* A microphone array such as [Azure Kinect DK](https://azure.microsoft.com/services/kinect-dk/)
24+
* [Eclipse Java IDE](https://www.eclipse.org/downloads/)
25+
* [Java 8](https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) or [JDK 8](https://www.oracle.com/technetwork/java/javase/downloads/index.html) only.
26+
* [Microsoft Visual C++ Redistributable](https://support.microsoft.com/help/2977003/the-latest-supported-visual-c-downloads)
2727
* An Azure subscription key for the Speech service. [Get one for free](../get-started.md).
28-
* Download the latest version of the [Speech Devices SDK](../https://aka.ms/sdsdk-download-JRE) for Java, and extract the .zip to your working directory.
28+
* Download the latest version of the [Speech Devices SDK](https://aka.ms/sdsdk-download-JRE) for Java, and extract the .zip to your working directory.
2929
> [!NOTE]
3030
> This quickstart assumes that the app is extracted to C:\SDSDK\JRE-Sample-Release
3131
3232
Conversation Transcription is currently only available for "en-US" and "zh-CN", in the “centralus” and “eastasia” regions. You must have a speech key in one of those regions to use Conversation Transcription.
3333

34-
If you plan to use the intents you'll need a [Language Understanding Service (LUIS)](../https://docs.microsoft.com/azure/cognitive-services/luis/azureibizasubscription) subscription. To learn more about LUIS and intent recognition, see [Recognize speech intents with LUIS, C#](../https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp). A [sample LUIS model](../https://aka.ms/sdsdk-luis) is available for this app.
34+
If you plan to use the intents you'll need a [Language Understanding Service (LUIS)](https://docs.microsoft.com/azure/cognitive-services/luis/azureibizasubscription) subscription. To learn more about LUIS and intent recognition, see [Recognize speech intents with LUIS, C#](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-recognize-intents-from-speech-csharp). A [sample LUIS model](https://aka.ms/sdsdk-luis) is available for this app.
3535

3636
## Create and configure the project
3737

@@ -80,7 +80,7 @@ If you plan to use the intents you'll need a [Language Understanding Service (LU
8080

8181
## Configure the sample application
8282

83-
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](../https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
83+
1. Add your speech subscription key to the source code. If you want to try intent recognition, also add your [Language Understanding service](https://azure.microsoft.com/services/cognitive-services/language-understanding-intelligent-service/) subscription key and application ID.
8484

8585
For speech and LUIS, your information goes into `FunctionsList.java`:
8686

0 commit comments

Comments
 (0)