Skip to content

Commit f6ef7a7

Browse files
Incorporate feedback.
1 parent 6bc57e4 commit f6ef7a7

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

articles/ai-services/speech-service/includes/common/azure-prerequisites.md

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

1010
> [!div class="checklist"]
11-
> - Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services)
11+
> - Azure subscription - [Create one for free](https://azure.microsoft.com/free/cognitive-services).
1212
> - <a href="https://portal.azure.com/#create/Microsoft.CognitiveServicesSpeechServices" title="Create a Speech resource" target="_blank">Create a Speech resource</a> in the Azure portal.
1313
> - Your Speech resource key and region. After your Speech resource is deployed, select **Go to resource** to view and manage keys. For more information about Azure AI services resources, see [Get the keys for your resource](~/articles/ai-services/multi-service-resource.md?pivots=azportal#get-the-keys-for-your-resource).

articles/ai-services/speech-service/includes/common/environment-variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.author: eur
1010
Your application must be authenticated to access Azure AI services resources. For production, use a secure way of storing and accessing your credentials. For example, after you [get a key](~/articles/ai-services/multi-service-resource.md?pivots=azportal#get-the-keys-for-your-resource) for your Speech resource, write it to a new environment variable on the local machine that runs the application.
1111

1212
> [!TIP]
13-
> Don't include the key directly in your code, and never post it publicly. See [Azure AI services security](../../../security-features.md) article for more authentication options such as [Azure Key Vault](../../../use-key-vault.md).
13+
> Don't include the key directly in your code, and never post it publicly. See [Azure AI services security](../../../security-features.md) for more authentication options such as [Azure Key Vault](../../../use-key-vault.md).
1414
1515
To set the environment variable for your Speech resource key, open a console window, and follow the instructions for your operating system and development environment.
1616

@@ -62,5 +62,5 @@ For iOS and macOS development, you set the environment variables in Xcode. For e
6262

6363
To set the environment variable for your Speech resource region, follow the same steps. Set `SPEECH_REGION` to the region of your resource. For example, `westus`.
6464

65-
For more configuration options, see [Configuration Settings File (xcconfig) format](https://help.apple.com/xcode/#/dev745c5c974).
65+
For more configuration options, see [the Xcode documentation](https://help.apple.com/xcode/#/dev745c5c974).
6666
***

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Here are some other considerations:
7272

7373
***
7474

75-
- To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`.
75+
- To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, use `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`.
7676

7777
```console
7878
spx recognize --microphone --source es-ES

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/
2626

2727
Follow these steps to create a console application and install the Speech SDK.
2828

29-
1. Create a new C++ console project in Visual Studio Community 2022 named `SpeechRecognition`.
29+
1. Create a new C++ console project in [Visual Studio Community](https://visualstudio.microsoft.com/downloads/) named `SpeechRecognition`.
3030
1. Install the Speech SDK in your new project with the NuGet package manager.
3131

3232
```powershell
@@ -107,7 +107,7 @@ Follow these steps to create a console application and install the Speech SDK.
107107
}
108108
```
109109
110-
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [Language identification](~/articles/ai-services/speech-service/language-identification.md).
110+
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, use `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [Language identification](~/articles/ai-services/speech-service/language-identification.md).
111111
112112
1. [Build and run](/cpp/build/vscpp-step-2-build) your new console application to start speech recognition from a microphone.
113113

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Follow these steps to create a console application and install the Speech SDK.
3838
dotnet add package Microsoft.CognitiveServices.Speech
3939
```
4040

41-
1. Replace the contents of *Program.cs* with the following code.
41+
1. Replace the contents of *Program.cs* with the following code:
4242

4343
```csharp
4444
using System;
@@ -92,7 +92,7 @@ Follow these steps to create a console application and install the Speech SDK.
9292
}
9393
```
9494

95-
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [language identification](~/articles/ai-services/speech-service/language-identification.md).
95+
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, use `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [Llanguage identification](~/articles/ai-services/speech-service/language-identification.md).
9696

9797
1. Run your new console application to start speech recognition from a microphone:
9898

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.author: eur
1616

1717
## Set up the environment
1818

19-
Install the [Speech SDK for Go](../../../quickstarts/setup-platform.md?pivots=programming-language-go&tabs=dotnet%252cwindows%252cjre%252cbrowser). For any other requirements, see [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-go).
19+
Install the Speech SDK for Go. For requirements and instructions, see [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-go).
2020

2121
### Set environment variables
2222

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ In this quickstart, you create and run an application to recognize and transcrib
1111
> [!TIP]
1212
> You can try real-time speech to text in [Speech Studio](https://aka.ms/speechstudio/speechtotexttool) without signing up or writing any code.
1313
14-
To instead transcribe audio files asynchronously, see [batch transcription](~/articles/ai-services/speech-service/batch-transcription.md). If you're not sure which speech to text solution is right for you, see [What is speech to text?](~/articles/ai-services/speech-service/speech-to-text.md)
14+
To instead transcribe audio files asynchronously, see [What is batch transcription](~/articles/ai-services/speech-service/batch-transcription.md). If you're not sure which speech to text solution is right for you, see [What is speech to text?](~/articles/ai-services/speech-service/speech-to-text.md)

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Follow these steps to create a console application for speech recognition.
115115
}
116116
```
117117

118-
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [language identification](~/articles/ai-services/speech-service/language-identification.md).
118+
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, use `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [Language identification](~/articles/ai-services/speech-service/language-identification.md).
119119

120120
1. Run your new console application to start speech recognition from a microphone:
121121

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/javascript.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ You also need a *.wav* audio file on your local machine. You can use your own *.
1818

1919
## Set up the environment
2020

21-
Before you can do anything, you need to install the Speech SDK for JavaScript. Run this command: `npm install microsoft-cognitiveservices-speech-sdk`. For guided installation instructions, see the [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-javascript).
21+
Before you can do anything, you need to install the Speech SDK for JavaScript. Run this command: `npm install microsoft-cognitiveservices-speech-sdk`. For guided installation instructions, see [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-javascript).
2222

2323
### Set environment variables
2424

@@ -74,8 +74,8 @@ Follow these steps to create a Node.js console application for speech recognitio
7474
fromFile();
7575
```
7676

77-
1. In *SpeechRecognition.js*, replace *YourAudioFile.wav* with your own *.wav* file. This example only recognizes speech from a *.wav* file. For information about other audio formats, see [How to use compressed input audio](~/articles/ai-services/speech-service/how-to-use-codec-compressed-audio-input-streams.md). This example supports up to 30 seconds audio.
78-
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [language identification](~/articles/ai-services/speech-service/language-identification.md).
77+
1. In *SpeechRecognition.js*, replace *YourAudioFile.wav* with your own *.wav* file. This example only recognizes speech from a *.wav* file. For information about other audio formats, see [How to use compressed input audio](~/articles/ai-services/speech-service/how-to-use-codec-compressed-audio-input-streams.md). This example supports up to 30 seconds of audio.
78+
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, use `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [Language identification](~/articles/ai-services/speech-service/language-identification.md).
7979

8080
1. Run your new console application to start speech recognition from a file:
8181

articles/ai-services/speech-service/includes/quickstarts/speech-to-text-basics/objectivec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Follow these steps to recognize speech in a macOS application.
7070
NSString *serviceRegion = [[[NSProcessInfo processInfo] environment] objectForKey:@"SPEECH_REGION"];
7171
```
7272

73-
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [language identification](~/articles/ai-services/speech-service/language-identification.md).
73+
1. To change the speech recognition language, replace `en-US` with another [supported language](~/articles/ai-services/speech-service/language-support.md). For example, use `es-ES` for Spanish (Spain). If you don't specify a language, the default is `en-US`. For details about how to identify one of multiple languages that might be spoken, see [Language identification](~/articles/ai-services/speech-service/language-identification.md).
7474
1. To make the debug output visible, select **View** > **Debug Area** > **Activate Console**.
7575
1. Build and run the example code by selecting **Product** > **Run** from the menu or selecting the **Play** button.
7676

0 commit comments

Comments
 (0)