Skip to content

Commit 466036f

Browse files
committed
Merge branch 'main' into eur/resource-key-bulk
2 parents b04641d + 1700a31 commit 466036f

39 files changed

+215
-212
lines changed

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

Lines changed: 10 additions & 11 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: 3/10/2025
10+
ms.date: 5/25/2025
1111
ms.devlang: csharp
1212
ms.custom: devx-track-csharp, devx-track-azurecli
1313
# Customer intent: As a user who implements audio transcription, I want to learn how to locate audio files for batch transcription.
@@ -27,7 +27,7 @@ You can specify one or multiple audio files when creating a transcription. We re
2727

2828
## Supported audio formats and codecs
2929

30-
The batch transcription API (and [fast transcription API](./fast-transcription-create.md)) supports multiple formats and codecs, such as:
30+
The [batch transcription API](./batch-transcription.md) and [fast transcription API](./fast-transcription-create.md) support multiple formats and codecs, such as:
3131

3232
- WAV
3333
- MP3
@@ -41,11 +41,10 @@ The batch transcription API (and [fast transcription API](./fast-transcription-c
4141
- WebM
4242
- SPEEX
4343

44-
4544
> [!NOTE]
46-
> Batch transcription service integrates [GStreamer](./how-to-use-codec-compressed-audio-input-streams.md) 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.
45+
> Batch transcription service integrates [GStreamer](./how-to-use-codec-compressed-audio-input-streams.md) and might accept more formats and codecs without returning errors. We suggest using lossless formats such as WAV (PCM encoding) and FLAC to ensure best transcription quality.
4746
48-
## Azure Blob Storage upload
47+
## Upload to Azure Blob Storage
4948

5049
When audio files are located in an [Azure Blob Storage](/azure/storage/blobs/storage-blobs-overview) account, you can request transcription of individual audio files or an entire Azure Blob Storage container. You can also [write transcription results](batch-transcription-create.md#specify-a-destination-container-url) to a Blob container.
5150

@@ -89,7 +88,7 @@ Follow these steps to create a storage account and upload wav files from your lo
8988
```
9089
9190
> [!TIP]
92-
> When you are finished with batch transcriptions and want to delete your storage account, use the [`az storage delete create`](/cli/azure/storage/account#az-storage-account-delete) command.
91+
> When you're finished with batch transcriptions and want to delete your storage account, use the [`az storage delete create`](/cli/azure/storage/account#az-storage-account-delete) command.
9392
9493
1. Get your new storage account keys with the [`az storage account keys list`](/cli/azure/storage/account#az-storage-account-keys-list) command.
9594
@@ -125,7 +124,7 @@ Follow these steps to create a storage account and upload wav files from your lo
125124
This section explains how to set up and limit access to your batch transcription source audio files in an Azure Storage account using the [trusted Azure services security mechanism](/azure/storage/common/storage-network-security#trusted-access-based-on-a-managed-identity).
126125
127126
> [!NOTE]
128-
> With the trusted Azure services security mechanism, you need to use [Azure Blob storage](/azure/storage/blobs/storage-blobs-overview) to store audio files. Usage of [Azure Files](/azure/storage/files/storage-files-introduction) is not supported.
127+
> With the trusted Azure services security mechanism, you need to use [Azure Blob storage](/azure/storage/blobs/storage-blobs-overview) to store audio files. Usage of [Azure Files](/azure/storage/files/storage-files-introduction) isn't supported.
129128
130129
If you perform all actions in this section, your Storage account is configured as follows:
131130
- Access to all external network traffic is prohibited.
@@ -243,7 +242,7 @@ A shared access signature (SAS) is a URI that grants restricted access to an Azu
243242

244243
Follow these steps to generate a SAS URL that you can use for batch transcriptions.
245244

246-
1. Complete the steps in [Azure Blob Storage upload](#azure-blob-storage-upload) to create a Storage account and upload audio files to a new container.
245+
1. Complete the steps in [Azure Blob Storage upload](#upload-to-azure-blob-storage) to create a Storage account and upload audio files to a new container.
247246
1. Select the new container.
248247
1. In the **Settings** group in the left pane, select **Shared access tokens**.
249248
1. Select **+ Container**.
@@ -258,7 +257,7 @@ Follow these steps to generate a SAS URL that you can use for batch transcriptio
258257

259258
Follow these steps to generate a SAS URL that you can use for batch transcriptions.
260259

261-
1. Complete the steps in [Azure Blob Storage upload](#azure-blob-storage-upload) to create a Storage account and upload audio files to a new container.
260+
1. Complete the steps in [Azure Blob Storage upload](#upload-to-azure-blob-storage) to create a Storage account and upload audio files to a new container.
262261
1. Generate a SAS URL with read (r) and list (l) permissions for the container with the [`az storage container generate-sas`](/cli/azure/storage/container#az-storage-container-generate-sas) command. Choose a new expiry date and replace `<mycontainer>` with the name of your container.
263262

264263
```azurecli-interactive
@@ -288,9 +287,9 @@ You could otherwise specify individual files in the container. You must generate
288287
}
289288
```
290289

291-
## Next steps
290+
## Related content
292291

293-
- [Batch transcription overview](batch-transcription.md)
292+
- [Learn more about batch transcription](batch-transcription.md)
294293
- [Create a batch transcription](batch-transcription-create.md)
295294
- [Get batch transcription results](batch-transcription-get.md)
296295
- [See batch transcription code samples at GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/batch/)

0 commit comments

Comments
 (0)