Skip to content

Commit d5ba62d

Browse files
Incorporate peer edits.
1 parent 8abc5db commit d5ba62d

File tree

10 files changed

+12
-28
lines changed

10 files changed

+12
-28
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ All neural voices are multilingual and fluent in their own language and English.
3030

3131
## Remarks
3232

33-
Here are some other considerations:
34-
3533
You can have finer control over voice styles, prosody, and other settings by using [Speech Synthesis Markup Language (SSML)](~/articles/ai-services/speech-service/speech-synthesis-markup.md).
3634

3735
- In the following example, the voice and style, `excited`, are provided in the SSML block.

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

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

1717
## Set up the environment
1818

19-
The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech) that implements .NET Standard 2.0. Install the Speech SDK later in this guide. Check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-cpp) for any requirements.
19+
The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech) that implements .NET Standard 2.0. Install the Speech SDK later in this guide. For any requirements, see [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-cpp).
2020

2121
### Set environment variables
2222

@@ -129,8 +129,6 @@ Follow these steps to create a new console application and install the Speech SD
129129

130130
## Remarks
131131

132-
Here are some other considerations:
133-
134132
This quickstart uses the `SpeakTextAsync` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
135133

136134
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

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

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

1717
## Set up the environment
1818

19-
The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech) That implements .NET Standard 2.0. Install the Speech SDK later in this guide. Check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-csharp) for any requirements.
19+
The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech) that implements .NET Standard 2.0. Install the Speech SDK later in this guide. For any requirements, see [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-csharp).
2020

2121
### Set environment variables
2222

@@ -121,8 +121,6 @@ Follow these steps to create a new console application and install the Speech SD
121121

122122
## Remarks
123123

124-
Here are some other considerations:
125-
126124
This quickstart uses the `SpeakTextAsync` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
127125

128126
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ Install the Speech SDK for Go. For requirements and instructions, see [Install t
2424

2525
## Synthesize to speaker output
2626

27-
Follow these steps to create a new GO module.
27+
Follow these steps to create a new Go module.
2828

2929
1. Open a console window where you want the new module, and then create a new file named *speech-synthesis.go*.
30-
1. Copy the following code into *speech_synthesis.go*:
30+
1. Copy the following code into *speech-synthesis.go*:
3131

3232
```go
3333
package main
@@ -140,7 +140,7 @@ Follow these steps to create a new GO module.
140140

141141
1. Run the following commands to create a *go.mod* file that links to components hosted on GitHub:
142142

143-
```cmd
143+
```console
144144
go mod init speech-synthesis
145145
go get github.com/Microsoft/cognitive-services-speech-sdk-go
146146
```
@@ -150,7 +150,7 @@ Follow these steps to create a new GO module.
150150
151151
1. Now build and run the code:
152152
153-
```cmd
153+
```console
154154
go build
155155
go run speech-synthesis
156156
```

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,6 @@ Follow these steps to create a console application for speech recognition.
138138

139139
## Remarks
140140

141-
Here are some other considerations:
142-
143141
This quickstart uses the `SpeakTextAsync` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
144142

145143
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

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

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

1717
## Set up the environment
1818

19-
Before you can do anything, you need to install the Speech SDK for JavaScript. If you just want the package name to install, run `npm install microsoft-cognitiveservices-speech-sdk`. For guided installation instructions, see the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-javascript).
19+
Before you can do anything, you need to install the Speech SDK for JavaScript. If you just want the package name to install, run `npm install microsoft-cognitiveservices-speech-sdk`. For guided installation instructions, see the [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-javascript).
2020

2121
### Set environment variables
2222

@@ -109,8 +109,6 @@ Follow these steps to create a Node.js console application for speech synthesis.
109109

110110
## Remarks
111111

112-
Here are some other considerations:
113-
114112
This quickstart uses the `SpeakTextAsync` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
115113

116114
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The Speech SDK can be used in Xcode projects as a [CocoaPod](https://cocoapods.o
2929
Follow these steps to synthesize speech in a macOS application.
3030

3131
1. Clone the [Azure-Samples/cognitive-services-speech-sdk](https://github.com/Azure-Samples/cognitive-services-speech-sdk) repository to get the [Synthesize audio in Objective-C on macOS using the Speech SDK](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/quickstart/objectivec/macos/text-to-speech) sample project. The repository also has iOS samples.
32-
1. Navigate to the directory of the downloaded sample app (`helloworld`) in a terminal.
32+
1. Open the directory of the downloaded sample app (`helloworld`) in a terminal.
3333
1. Run the command `pod install`. This command generates a `helloworld.xcworkspace` Xcode workspace containing both the sample app and the Speech SDK as a dependency.
3434
1. Open the `helloworld.xcworkspace` workspace in Xcode.
3535
1. Open the file named *AppDelegate.m* and locate the `buttonPressed` method as shown here.
@@ -87,8 +87,6 @@ After you input some text and select the button in the app, you should hear the
8787

8888
## Remarks
8989

90-
Here are some other considerations:
91-
9290
This quickstart uses the `SpeakText` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
9391

9492
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Speech SDK for Python is available as a [Python Package Index (PyPI) module]
2121
- On Windows, install the [Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, 2019, and 2022](/cpp/windows/latest-supported-vc-redist?view=msvc-170&preserve-view=true) for your platform. Installing this package might require a restart.
2222
- On Linux, you must use the x64 target architecture.
2323

24-
Install a version of [Python from 3.7 or later](https://www.python.org/downloads/). Check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-python) for any requirements.
24+
Install a version of [Python from 3.7 or later](https://www.python.org/downloads/). For any requirements, see [Install the Speech SDK](../../../quickstarts/setup-platform.md?pivots=programming-language-python).
2525

2626
### Set environment variables
2727

@@ -92,8 +92,6 @@ Follow these steps to create a console application.
9292

9393
## Remarks
9494

95-
Here are some other considerations:
96-
9795
This quickstart uses the `speak_text_async` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
9896

9997
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ At a command prompt, run the following cURL command. Optionally, you can rename
2424

2525
# [Windows](#tab/windows)
2626

27-
```terminal
27+
```console
2828
curl --location --request POST "https://%SPEECH_REGION%.tts.speech.microsoft.com/cognitiveservices/v1" ^
2929
--header "Ocp-Apim-Subscription-Key: %SPEECH_KEY%" ^
3030
--header "Content-Type: application/ssml+xml" ^
@@ -35,7 +35,7 @@ curl --location --request POST "https://%SPEECH_REGION%.tts.speech.microsoft.com
3535

3636
# [Linux](#tab/linux)
3737

38-
```terminal
38+
```console
3939
curl --location --request POST "https://${SPEECH_REGION}.tts.speech.microsoft.com/cognitiveservices/v1" \
4040
--header "Ocp-Apim-Subscription-Key: ${SPEECH_KEY}" \
4141
--header 'Content-Type: application/ssml+xml' \
@@ -50,7 +50,7 @@ curl --location --request POST "https://${SPEECH_REGION}.tts.speech.microsoft.co
5050

5151
# [macOS](#tab/macos)
5252

53-
```terminal
53+
```console
5454
curl --location --request POST "https://${SPEECH_REGION}.tts.speech.microsoft.com/cognitiveservices/v1" \
5555
--header "Ocp-Apim-Subscription-Key: ${SPEECH_KEY}" \
5656
--header 'Content-Type: application/ssml+xml' \

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,6 @@ After you input some text and select the button in the app, you should hear the
135135

136136
## Remarks
137137

138-
Here are some other considerations:
139-
140138
This quickstart uses the `SpeakText` operation to synthesize a short block of text that you enter. You can also get text from files as described in these guides:
141139

142140
- For information about speech synthesis from a file and finer control over voice styles, prosody, and other settings, see [How to synthesize speech](~/articles/ai-services/speech-service/how-to-speech-synthesis.md) and [Speech Synthesis Markup Language (SSML) overview](~/articles/ai-services/speech-service/speech-synthesis-markup.md).

0 commit comments

Comments
 (0)