Skip to content

Commit 41f0f8a

Browse files
committed
retire qualtrics from these pages
1 parent c1e24a6 commit 41f0f8a

19 files changed

+0
-205
lines changed

articles/cognitive-services/Speech-Service/how-to-custom-speech-create-project.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ To create a Custom Speech project, follow these steps:
3434

3535
Select the new project by name or select **Go to project**. You will see these menu items in the left panel: **Speech datasets**, **Train custom models**, **Test models**, and **Deploy models**.
3636

37-
> [!div class="nextstepaction"]
38-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Create-a-project&Section=Create-a-project" target="_target">I ran into an issue</a>
39-
4037
::: zone-end
4138

4239
::: zone pivot="speech-cli"
@@ -52,9 +49,6 @@ Here's an example Speech CLI command that creates a project:
5249
spx csr project create --name "My Project" --description "My Project Description" --language "en-US"
5350
```
5451

55-
> [!div class="nextstepaction"]
56-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Create-a-project&Section=Create-a-project" target="_target">I ran into an issue</a>
57-
5852
You should receive a response body in the following format:
5953

6054
```json
@@ -108,9 +102,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
108102
} ' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/projects"
109103
```
110104

111-
> [!div class="nextstepaction"]
112-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Create-a-project&Section=Create-a-project" target="_target">I ran into an issue</a>
113-
114105
You should receive a response body in the following format:
115106

116107
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-deploy-model.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,6 @@ Here's an example Speech CLI command to create an endpoint and deploy a model:
7070
spx csr endpoint create --project YourProjectId --model YourModelId --name "My Endpoint" --description "My Endpoint Description" --language "en-US"
7171
```
7272

73-
> [!div class="nextstepaction"]
74-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Add-a-deployment-endpoint" target="_target">I ran into an issue</a>
75-
7673
You should receive a response body in the following format:
7774

7875
```json
@@ -144,9 +141,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
144141
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints"
145142
```
146143

147-
> [!div class="nextstepaction"]
148-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Add-a-deployment-endpoint" target="_target">I ran into an issue</a>
149-
150144
You should receive a response body in the following format:
151145

152146
```json
@@ -212,9 +206,6 @@ Here's an example Speech CLI command that redeploys the custom endpoint with a n
212206
spx csr endpoint update --endpoint YourEndpointId --model YourModelId
213207
```
214208

215-
> [!div class="nextstepaction"]
216-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Add-a-deployment-endpoint" target="_target">I ran into an issue</a>
217-
218209
You should receive a response body in the following format:
219210

220211
```json
@@ -271,9 +262,6 @@ curl -v -X PATCH -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content
271262
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints/YourEndpointId"
272263
```
273264

274-
> [!div class="nextstepaction"]
275-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Change-model-and-redeploy-endpoint" target="_target">I ran into an issue</a>
276-
277265
You should receive a response body in the following format:
278266

279267
```json
@@ -337,9 +325,6 @@ Here's an example Speech CLI command that gets logs for an endpoint:
337325
spx csr endpoint list --endpoint YourEndpointId
338326
```
339327

340-
> [!div class="nextstepaction"]
341-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Change-model-and-redeploy-endpoint" target="_target">I ran into an issue</a>
342-
343328
The location of each log file with more details are returned in the response body.
344329

345330
::: zone-end
@@ -354,9 +339,6 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
354339
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints/YourEndpointId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
355340
```
356341

357-
> [!div class="nextstepaction"]
358-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Deploy-a-model&Section=Change-model-and-redeploy-endpoint" target="_target">I ran into an issue</a>
359-
360342
You should receive a response body in the following format:
361343

362344
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-evaluate-data.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ Follow these steps to create a test:
4343
1. Enter the test name and description, and then select **Next**.
4444
1. Review the test details, and then select **Save and close**.
4545

46-
> [!div class="nextstepaction"]
47-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Create-a-test" target="_target">I ran into an issue</a>
48-
4946
::: zone-end
5047

5148
::: zone pivot="speech-cli"
@@ -65,9 +62,6 @@ Here's an example Speech CLI command that creates a test:
6562
spx csr evaluation create --project 9f8c4cbb-f9a5-4ec1-8bb0-53cfa9221226 --dataset be378d9d-a9d7-4d4a-820a-e0432e8678c7 --model1 ff43e922-e3e6-4bf0-8473-55c08fd68048 --model2 1aae1070-7972-47e9-a977-87e3b05c457d --name "My Evaluation" --description "My Evaluation Description"
6663
```
6764

68-
> [!div class="nextstepaction"]
69-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Create-a-test" target="_target">I ran into an issue</a>
70-
7165
You should receive a response body in the following format:
7266

7367
```json
@@ -168,9 +162,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
168162
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations"
169163
```
170164

171-
> [!div class="nextstepaction"]
172-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Create-a-test" target="_target">I ran into an issue</a>
173-
174165
You should receive a response body in the following format:
175166

176167
```json
@@ -246,9 +237,6 @@ Follow these steps to get test results:
246237

247238
This page lists all the utterances in your dataset and the recognition results, alongside the transcription from the submitted dataset. You can toggle various error types, including insertion, deletion, and substitution. By listening to the audio and comparing recognition results in each column, you can decide which model meets your needs and determine where additional training and improvements are required.
248239

249-
> [!div class="nextstepaction"]
250-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Get-test-results" target="_target">I ran into an issue</a>
251-
252240
::: zone-end
253241

254242
::: zone pivot="speech-cli"
@@ -263,9 +251,6 @@ Here's an example Speech CLI command that gets test results:
263251
spx csr evaluation status --evaluation 8bfe6b05-f093-4ab4-be7d-180374b751ca
264252
```
265253

266-
> [!div class="nextstepaction"]
267-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Get-test-results" target="_target">I ran into an issue</a>
268-
269254
The word error rates and more details are returned in the response body.
270255

271256
You should receive a response body in the following format:
@@ -342,9 +327,6 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
342327
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations/YourEvaluationId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
343328
```
344329

345-
> [!div class="nextstepaction"]
346-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-model-quantitatively&Section=Get-test-results" target="_target">I ran into an issue</a>
347-
348330
The word error rates and more details are returned in the response body.
349331

350332
You should receive a response body in the following format:

articles/cognitive-services/Speech-Service/how-to-custom-speech-inspect-data.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ Follow these instructions to create a test:
3939
1. Enter the test name and description, and then select **Next**.
4040
1. Review your settings, and then select **Save and close**.
4141

42-
> [!div class="nextstepaction"]
43-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Create-a-test" target="_target">I ran into an issue</a>
44-
4542
::: zone-end
4643

4744
::: zone pivot="speech-cli"
@@ -61,9 +58,6 @@ Here's an example Speech CLI command that creates a test:
6158
spx csr evaluation create --project 9f8c4cbb-f9a5-4ec1-8bb0-53cfa9221226 --dataset be378d9d-a9d7-4d4a-820a-e0432e8678c7 --model1 ff43e922-e3e6-4bf0-8473-55c08fd68048 --model2 1aae1070-7972-47e9-a977-87e3b05c457d --name "My Inspection" --description "My Inspection Description"
6259
```
6360

64-
> [!div class="nextstepaction"]
65-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Create-a-test" target="_target">I ran into an issue</a>
66-
6761
You should receive a response body in the following format:
6862

6963
```json
@@ -160,9 +154,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
160154
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations"
161155
```
162156

163-
> [!div class="nextstepaction"]
164-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Create-a-test" target="_target">I ran into an issue</a>
165-
166157
You should receive a response body in the following format:
167158

168159
```json
@@ -236,9 +227,6 @@ Follow these steps to get test results:
236227

237228
This page lists all the utterances in your dataset and the recognition results, alongside the transcription from the submitted dataset. You can toggle various error types, including insertion, deletion, and substitution. By listening to the audio and comparing recognition results in each column, you can decide which model meets your needs and determine where additional training and improvements are required.
238229

239-
> [!div class="nextstepaction"]
240-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Get-test-results" target="_target">I ran into an issue</a>
241-
242230
::: zone-end
243231

244232
::: zone pivot="speech-cli"
@@ -253,9 +241,6 @@ Here's an example Speech CLI command that gets test results:
253241
spx csr evaluation status --evaluation 8bfe6b05-f093-4ab4-be7d-180374b751ca
254242
```
255243

256-
> [!div class="nextstepaction"]
257-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Get-test-results" target="_target">I ran into an issue</a>
258-
259244
The models, audio dataset, transcriptions, and more details are returned in the response body.
260245

261246
You should receive a response body in the following format:
@@ -329,9 +314,6 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
329314
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations/YourEvaluationId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
330315
```
331316

332-
> [!div class="nextstepaction"]
333-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Test-recognition-quality&Section=Get-test-results" target="_target">I ran into an issue</a>
334-
335317
The models, audio dataset, transcriptions, and more details are returned in the response body.
336318

337319
You should receive a response body in the following format:

articles/cognitive-services/Speech-Service/how-to-custom-speech-train-model.md

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ After you've uploaded [training datasets](./how-to-custom-speech-test-and-train.
5353
> [!IMPORTANT]
5454
> Take note of the **Expiration** date. This is the last date that you can use your custom model for speech recognition. For more information, see [Model and endpoint lifecycle](./how-to-custom-speech-model-and-endpoint-lifecycle.md).
5555
56-
> [!div class="nextstepaction"]
57-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Create-a-model" target="_target">I ran into an issue</a>
58-
5956
::: zone-end
6057

6158
::: zone pivot="speech-cli"
@@ -77,9 +74,6 @@ spx csr model create --project YourProjectId --name "My Model" --description "My
7774
> [!NOTE]
7875
> In this example, the `baseModel` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
7976
80-
> [!div class="nextstepaction"]
81-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Create-a-model" target="_target">I ran into an issue</a>
82-
8377
You should receive a response body in the following format:
8478

8579
```json
@@ -162,9 +156,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
162156
> [!NOTE]
163157
> In this example, the `baseModel` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
164158
165-
> [!div class="nextstepaction"]
166-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Create-a-model" target="_target">I ran into an issue</a>
167-
168159
You should receive a response body in the following format:
169160

170161
```json
@@ -229,9 +220,6 @@ Follow these instructions to copy a model to a project in another region:
229220

230221
After the model is successfully copied, you'll be notified and can view it in the target project.
231222

232-
> [!div class="nextstepaction"]
233-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Copy-a-model" target="_target">I ran into an issue</a>
234-
235223
::: zone-end
236224

237225
::: zone pivot="speech-cli"
@@ -257,9 +245,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
257245
> [!NOTE]
258246
> Only the `targetSubscriptionKey` property in the request body has information about the destination Speech resource.
259247
260-
> [!div class="nextstepaction"]
261-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Train-a-model&Section=Copy-a-model" target="_target">I ran into an issue</a>
262-
263248
You should receive a response body in the following format:
264249

265250
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-upload-data.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ To upload your own datasets in Speech Studio, follow these steps:
3636

3737
After your dataset is uploaded, go to the **Train custom models** page to [train a custom model](how-to-custom-speech-train-model.md)
3838

39-
> [!div class="nextstepaction"]
40-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Speech-studio&Pillar=Speech&Product=Custom-speech&Page=Upload-training-and-testing-datasets&Section=Upload-datasets" target="_target">I ran into an issue</a>
41-
4239
::: zone-end
4340

4441
::: zone pivot="speech-cli"
@@ -59,9 +56,6 @@ Here's an example Speech CLI command that creates a dataset and connects it to a
5956
spx csr dataset create --kind "Acoustic" --name "My Acoustic Dataset" --description "My Acoustic Dataset Description" --project YourProjectId --content YourContentUrl --language "en-US"
6057
```
6158

62-
> [!div class="nextstepaction"]
63-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Custom-speech&Page=Upload-training-and-testing-datasets&Section=Upload-datasets" target="_target">I ran into an issue</a>
64-
6559
You should receive a response body in the following format:
6660

6761
```json
@@ -125,9 +119,6 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
125119
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/datasets"
126120
```
127121

128-
> [!div class="nextstepaction"]
129-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Speech&Product=Custom-speech&Page=Upload-training-and-testing-datasets&Section=Upload-datasets" target="_target">I ran into an issue</a>
130-
131122
You should receive a response body in the following format:
132123

133124
```json

articles/cognitive-services/Speech-Service/includes/quickstarts/captioning/cli.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,12 @@ 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=Captioning&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

2219
You must also install [GStreamer](~/articles/cognitive-services/speech-service/how-to-use-codec-compressed-audio-input-streams.md) for compressed input audio.
2320

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

2923
With the [Speech CLI](~/articles/cognitive-services/speech-service/spx-overview.md), you can output both SRT (SubRip Text) and WebVTT (Web Video Text Tracks) captions from any type of media that contains audio.
@@ -52,9 +46,6 @@ To recognize audio from a file and output both WebVtt (`vtt`) and SRT (`srt`) ca
5246
}
5347
```
5448

55-
> [!div class="nextstepaction"]
56-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=Captioning&Page=quickstart&Section=Create-captions-from-speech" target="_target">I ran into an issue</a>
57-
5849
## Usage and arguments
5950

6051
Here are details about the optional arguments from the previous command:

articles/cognitive-services/Speech-Service/includes/quickstarts/captioning/cpp.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=CPP&Pillar=Speech&Product=Captioning&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
19-
2017
## Set up the environment
2118

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

2421
You must also install [GStreamer](~/articles/cognitive-services/speech-service/how-to-use-codec-compressed-audio-input-streams.md) for compressed input audio.
2522

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

3125
Follow these steps to create a new console application and install the Speech SDK.
@@ -70,9 +64,6 @@ Follow these steps to create a new console application and install the Speech SD
7064
Welcome to applied Mathematics course 201.
7165
```
7266
73-
> [!div class="nextstepaction"]
74-
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CPP&Pillar=Speech&Product=Captioning&Page=quickstart&Section=Create-captions-from-speech" target="_target">I ran into an issue</a>
75-
7667
## Usage and arguments
7768
7869
Usage: `captioning --key <key> --region <region> --input <input file>`

0 commit comments

Comments
 (0)