Skip to content

Commit 8bb688c

Browse files
authored
Merge pull request #202596 from eric-urban/eur/tts-cut-qualtrics
Cut TTS research links
2 parents 3c2815f + e069e67 commit 8bb688c

File tree

10 files changed

+0
-90
lines changed

10 files changed

+0
-90
lines changed

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/cli.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,10 @@ ms.author: eur
1212

1313
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1414

15-
> [!div class="nextstepaction"]
16-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
17-
1815
## Set up the environment
1916

2017
[!INCLUDE [SPX Setup](../../spx-setup-quick.md)]
2118

22-
> [!div class="nextstepaction"]
23-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
24-
2519
## Synthesize to speaker output
2620

2721
Run the following command for speech synthesis to the default speaker output. You can modify the text to be synthesized and the voice.
@@ -31,9 +25,6 @@ Run the following command for speech synthesis to the default speaker output. Yo
3125
```
3226

3327
If you don't set a voice name, the default voice for `en-US` will speak. All neural voices are multilingual and fluent in their own language and English. For example, if the input text in English is "I'm excited to try text to speech" and you set `--voice "es-ES-ElviraNeural"`, the text is spoken in English with a Spanish accent. If the voice does not speak the language of the input text, the Speech service won't output synthesized audio.
34-
35-
> [!div class="nextstepaction"]
36-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
3728

3829
Run this command for information about additional speech synthesis options such as file input and output:
3930
```console

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/cpp.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,9 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CPP&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118
The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech) and implements .NET Standard 2.0. You install the Speech SDK in the next section of this article, but first check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-cpp) for any more requirements
2219

23-
> [!div class="nextstepaction"]
24-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CPP&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
2520

2621
## Synthesize to speaker output
2722

@@ -100,10 +95,6 @@ Enter some text that you want to speak >
10095
I'm excited to try text to speech
10196
```
10297

103-
> [!div class="nextstepaction"]
104-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CPP&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
105-
106-
10798
## Remarks
10899
Now that you've completed the quickstart, here are some additional considerations:
109100

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/csharp.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,9 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118
The Speech SDK is available as a [NuGet package](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech) and implements .NET Standard 2.0. You install the Speech SDK in the next section of this article, but first check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-csharp) for any more requirements.
2219

23-
> [!div class="nextstepaction"]
24-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
25-
2620
## Synthesize to speaker output
2721

2822
Follow these steps to create a new console application and install the Speech SDK.
@@ -111,9 +105,6 @@ Enter some text that you want to speak >
111105
I'm excited to try text to speech
112106
```
113107

114-
> [!div class="nextstepaction"]
115-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
116-
117108
## Remarks
118109
Now that you've completed the quickstart, here are some additional considerations:
119110

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/go.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,10 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=GO&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

2219
Install the [Speech SDK for Go](../../../quickstarts/setup-platform.md?pivots=programming-language-go&tabs=dotnet%252cwindows%252cjre%252cbrowser). Check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-go) for any more requirements
2320

24-
> [!div class="nextstepaction"]
25-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=GO&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
26-
2721
## Synthesize to speaker output
2822

2923
Follow these steps to create a new GO module.
@@ -152,10 +146,6 @@ go build
152146
go run speech-synthesis
153147
```
154148
155-
> [!div class="nextstepaction"]
156-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=GO&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
157-
158-
159149
## Clean up resources
160150
161151
[!INCLUDE [Delete resource](../../common/delete-resource.md)]

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/java.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,10 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVA&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

2219
Before you can do anything, you need to install the Speech SDK. The sample in this quickstart works with the [Java Runtime](~/articles/cognitive-services/speech-service/quickstarts/setup-platform.md?pivots=programming-language-java&tabs=jre).
2320

24-
> [!div class="nextstepaction"]
25-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVA&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
26-
2721
## Synthesize to speaker output
2822

2923
Follow these steps to create a new console application for speech recognition.
@@ -94,9 +88,6 @@ Enter some text that you want to speak >
9488
I'm excited to try text to speech
9589
```
9690
97-
> [!div class="nextstepaction"]
98-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVA&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
99-
10091
## Remarks
10192
Now that you've completed the quickstart, here are some additional considerations:
10293

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/javascript.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,10 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVASCRIPT&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

2219
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).
2320

24-
> [!div class="nextstepaction"]
25-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVASCRIPT&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
26-
2721

2822
## Synthesize to file output
2923

@@ -104,9 +98,6 @@ Now synthesizing to: YourAudioFile.wav
10498
synthesis finished.
10599
```
106100

107-
> [!div class="nextstepaction"]
108-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVASCRIPT&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-file-output" target="_target">I ran into an issue</a>
109-
110101
## Remarks
111102
Now that you've completed the quickstart, here are some additional considerations:
112103

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/objectivec.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,12 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=OBJECTIVEC&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

2219
The Speech SDK for Objective-C is distributed as a framework bundle. The framework supports both Objective-C and Swift on both iOS and macOS.
2320

2421
The Speech SDK can be used in Xcode projects as a [CocoaPod](https://cocoapods.org/), or downloaded directly [here](https://aka.ms/csspeech/macosbinary) and linked manually. This guide uses a CocoaPod. Install the CocoaPod dependency manager as described in its [installation instructions](https://guides.cocoapods.org/using/getting-started.html).
2522

26-
> [!div class="nextstepaction"]
27-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=OBJECTIVEC&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
28-
29-
3023
## Synthesize to speaker output
3124

3225
Follow these steps to synthesize speech in a macOS application.
@@ -75,9 +68,6 @@ Follow these steps to synthesize speech in a macOS application.
7568
7669
After you input some text and select the button in the app, you should hear the synthesized audio played.
7770
78-
> [!div class="nextstepaction"]
79-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=OBJECTIVEC&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
80-
8171
## Remarks
8272
Now that you've completed the quickstart, here are some additional considerations:
8373

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/python.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=PYTHON&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

2219
The Speech SDK for Python is available as a [Python Package Index (PyPI) module](https://pypi.org/project/azure-cognitiveservices-speech/). The Speech SDK for Python is compatible with Windows, Linux, and macOS.
@@ -25,9 +22,6 @@ The Speech SDK for Python is available as a [Python Package Index (PyPI) module]
2522

2623
Install a version of [Python from 3.7 to 3.10](https://www.python.org/downloads/). First check the [SDK installation guide](../../../quickstarts/setup-platform.md?pivots=programming-language-python) for any more requirements
2724

28-
> [!div class="nextstepaction"]
29-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=PYTHON&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
30-
3125
## Synthesize to speaker output
3226

3327
Follow these steps to create a new console application.
@@ -82,9 +76,6 @@ Enter some text that you want to speak >
8276
I'm excited to try text to speech
8377
```
8478

85-
> [!div class="nextstepaction"]
86-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=PYTHON&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
87-
8879
## Remarks
8980
Now that you've completed the quickstart, here are some additional considerations:
9081

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/rest.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Synthesize to a file
2118

2219
At a command prompt, run the following cURL command. Insert the following values into the command. Replace `YourSubscriptionKey` with your Speech resource key, and replace `YourServiceRegion` with your Speech resource region. Optionally you can rename `output.mp3` to another output filename.
@@ -43,10 +40,6 @@ To change the speech synthesis language, replace `en-US-JennyNeural` with anothe
4340

4441
For more information, see [Text-to-speech REST API](../../../rest-text-to-speech.md).
4542

46-
> [!div class="nextstepaction"]
47-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-file-output" target="_target">I ran into an issue</a>
48-
49-
5043
## Clean up resources
5144

5245
[!INCLUDE [Delete resource](../../common/delete-resource.md)]

articles/cognitive-services/Speech-Service/includes/quickstarts/text-to-speech-basics/swift.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,12 @@ ms.author: eur
1414

1515
[!INCLUDE [Prerequisites](../../common/azure-prerequisites.md)]
1616

17-
> [!div class="nextstepaction"]
18-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=SWIFT&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

2219
The Speech SDK for Swift is distributed as a framework bundle. The framework supports both Objective-C and Swift on both iOS and macOS.
2320

2421
The Speech SDK can be used in Xcode projects as a [CocoaPod](https://cocoapods.org/), or downloaded directly [here](https://aka.ms/csspeech/macosbinary) and linked manually. This guide uses a CocoaPod. Install the CocoaPod dependency manager as described in its [installation instructions](https://guides.cocoapods.org/using/getting-started.html).
2522

26-
> [!div class="nextstepaction"]
27-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=SWIFT&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Set-up-the-environment" target="_target">I ran into an issue</a>
28-
2923
## Synthesize to speaker output
3024

3125
Follow these steps to synthesize speech in a macOS application.
@@ -121,9 +115,6 @@ Follow these steps to synthesize speech in a macOS application.
121115

122116
After you input some text and select the button in the app, you should hear the synthesized audio played.
123117

124-
> [!div class="nextstepaction"]
125-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=SWIFT&Pillar=Speech&Product=text-to-speech&Page=quickstart&Section=Synthesize-to-speaker-output" target="_target">I ran into an issue</a>
126-
127118
## Remarks
128119
Now that you've completed the quickstart, here are some additional considerations:
129120

0 commit comments

Comments
 (0)