Skip to content

Commit 07b264a

Browse files
committed
refresh batch transcription v3.2
1 parent 47ea8f2 commit 07b264a

File tree

4 files changed

+58
-59
lines changed

4 files changed

+58
-59
lines changed

articles/ai-services/speech-service/batch-transcription-audio-data.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: eric-urban
77
ms.author: eur
88
ms.service: azure-ai-speech
99
ms.topic: how-to
10-
ms.date: 5/21/2024
10+
ms.date: 7/16/2024
1111
ms.devlang: csharp
1212
ms.custom: devx-track-csharp, devx-track-azurecli
1313
---
@@ -26,7 +26,7 @@ You can specify one or multiple audio files when creating a transcription. We re
2626

2727
## Supported audio formats and codecs
2828

29-
The batch transcription API (and [fast transcription API](./fast-transcription-create.md)) supports many different formats and codecs, such as:
29+
The batch transcription API (and [fast transcription API](./fast-transcription-create.md)) supports multiple formats and codecs, such as:
3030

3131
- WAV
3232
- MP3
@@ -43,7 +43,7 @@ The batch transcription API (and [fast transcription API](./fast-transcription-c
4343

4444

4545
> [!NOTE]
46-
> Batch transcription service integrates GStreamer and may accept more formats and codecs without returning errors, while we suggest to use lossless formats such as WAV (PCM encoding) and FLAC to ensure best transcription quality.
46+
> Batch transcription service integrates GStreamer and might accept more formats and codecs without returning errors. We suggest to use lossless formats such as WAV (PCM encoding) and FLAC to ensure best transcription quality.
4747
4848
## Azure Blob Storage upload
4949

@@ -188,7 +188,7 @@ Having restricted access to the Storage account, you need to grant access to spe
188188
1. Select **Save**.
189189
190190
> [!NOTE]
191-
> It may take up to 5 min for the network changes to propagate.
191+
> It might take up to 5 min for the network changes to propagate.
192192
193193
Although by now the network access is permitted, the Speech resource can't yet access the data in the Storage account. You need to assign a specific access role for Speech resource managed identity.
194194

articles/ai-services/speech-service/batch-transcription-create.md

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: eric-urban
77
ms.author: eur
88
ms.service: azure-ai-speech
99
ms.topic: how-to
10-
ms.date: 5/21/2024
10+
ms.date: 7/16/2024
1111
zone_pivot_groups: speech-cli-rest
1212
ms.custom: devx-track-csharp
1313
# Customer intent: As a user who implements audio transcription, I want create transcriptions in bulk so that I don't have to submit audio content repeatedly.
@@ -22,8 +22,7 @@ With batch transcriptions, you submit [audio data](batch-transcription-audio-dat
2222
2323
## Prerequisites
2424

25-
- The [Speech SDK](quickstarts/setup-platform.md) installed.
26-
- A standard (S0) Speech resource. Free resources (F0) aren't supported.
25+
You need a standard (S0) Speech resource. Free resources (F0) aren't supported.
2726

2827
## Create a transcription job
2928

@@ -63,19 +62,19 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
6362
],
6463
}
6564
},
66-
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.1/transcriptions"
65+
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions"
6766
```
6867

6968
You should receive a response body in the following format:
7069

7170
```json
7271
{
73-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/transcriptions/db474955-ab85-4c6c-ba6e-3bfe63d041ba",
72+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions/db474955-ab85-4c6c-ba6e-3bfe63d041ba",
7473
"model": {
75-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/models/base/13fb305e-09ad-4bce-b3a1-938c9124dda3"
74+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/5988d691-0893-472c-851e-8e36a0fe7aaf"
7675
},
7776
"links": {
78-
"files": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/transcriptions/db474955-ab85-4c6c-ba6e-3bfe63d041ba/files"
77+
"files": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions/db474955-ab85-4c6c-ba6e-3bfe63d041ba/files"
7978
},
8079
"properties": {
8180
"diarizationEnabled": false,
@@ -94,9 +93,9 @@ You should receive a response body in the following format:
9493
]
9594
}
9695
},
97-
"lastActionDateTime": "2022-10-21T14:18:06Z",
96+
"lastActionDateTime": "2024-05-21T14:18:06Z",
9897
"status": "NotStarted",
99-
"createdDateTime": "2022-10-21T14:18:06Z",
98+
"createdDateTime": "2024-05-21T14:18:06Z",
10099
"locale": "en-US",
101100
"displayName": "My Transcription"
102101
}
@@ -129,12 +128,12 @@ You should receive a response body in the following format:
129128

130129
```json
131130
{
132-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/transcriptions/7f4232d5-9873-47a7-a6f7-4a3f00d00dc0",
131+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions/7f4232d5-9873-47a7-a6f7-4a3f00d00dc0",
133132
"model": {
134-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/models/base/13fb305e-09ad-4bce-b3a1-938c9124dda3"
133+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/5988d691-0893-472c-851e-8e36a0fe7aaf"
135134
},
136135
"links": {
137-
"files": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/transcriptions/7f4232d5-9873-47a7-a6f7-4a3f00d00dc0/files"
136+
"files": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions/7f4232d5-9873-47a7-a6f7-4a3f00d00dc0/files"
138137
},
139138
"properties": {
140139
"diarizationEnabled": false,
@@ -146,9 +145,9 @@ You should receive a response body in the following format:
146145
"punctuationMode": "DictatedAndAutomatic",
147146
"profanityFilterMode": "Masked"
148147
},
149-
"lastActionDateTime": "2022-10-21T14:21:59Z",
148+
"lastActionDateTime": "2024-05-21T14:21:59Z",
150149
"status": "NotStarted",
151-
"createdDateTime": "2022-10-21T14:21:59Z",
150+
"createdDateTime": "2024-05-21T14:21:59Z",
152151
"locale": "en-US",
153152
"displayName": "My Transcription",
154153
"description": ""
@@ -220,20 +219,20 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
220219
"locale": "en-US",
221220
"displayName": "My Transcription",
222221
"model": {
223-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/models/base/1aae1070-7972-47e9-a977-87e3b05c457d"
222+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/5988d691-0893-472c-851e-8e36a0fe7aaf"
224223
},
225224
"properties": {
226225
"wordLevelTimestampsEnabled": true,
227226
},
228-
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.1/transcriptions"
227+
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.2/transcriptions"
229228
```
230229

231230
::: zone-end
232231

233232
::: zone pivot="speech-cli"
234233

235234
```azurecli
236-
spx batch transcription create --name "My Transcription" --language "en-US" --content https://crbn.us/hello.wav;https://crbn.us/whatstheweatherlike.wav --model "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.1/models/base/1aae1070-7972-47e9-a977-87e3b05c457d"
235+
spx batch transcription create --name "My Transcription" --language "en-US" --content https://crbn.us/hello.wav;https://crbn.us/whatstheweatherlike.wav --model "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/5988d691-0893-472c-851e-8e36a0fe7aaf"
237236
```
238237

239238
::: zone-end
@@ -333,7 +332,7 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
333332
"locale": "en-US",
334333
"displayName": "My Transcription",
335334
"model": {
336-
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/d9cbeee6-582b-47ad-b5c1-6226583c92b6"
335+
"self": "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/e418c4a9-9937-4db7-b2c9-8afbff72d950"
337336
},
338337
"properties": {
339338
"wordLevelTimestampsEnabled": true,
@@ -346,7 +345,7 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
346345
::: zone pivot="speech-cli"
347346

348347
```azurecli
349-
spx batch transcription create --name "My Transcription" --language "en-US" --content https://crbn.us/hello.wav;https://crbn.us/whatstheweatherlike.wav --model "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/d9cbeee6-582b-47ad-b5c1-6226583c92b6" --api-version v3.2
348+
spx batch transcription create --name "My Transcription" --language "en-US" --content https://crbn.us/hello.wav;https://crbn.us/whatstheweatherlike.wav --model "https://eastus.api.cognitive.microsoft.com/speechtotext/v3.2/models/base/e418c4a9-9937-4db7-b2c9-8afbff72d950" --api-version v3.2
350349
```
351350

352351
::: zone-end

0 commit comments

Comments
 (0)