Skip to content

Commit b437eb3

Browse files
authored
Merge pull request #244 from eric-urban/eur/speech-refresh-2
refresh audio batch and call center
2 parents 97f0635 + f7b112f commit b437eb3

13 files changed

+48
-43
lines changed

articles/ai-services/speech-service/audio-processing-overview.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22
title: Audio processing - Speech service
33
titleSuffix: Azure AI services
44
description: An overview of audio processing and capabilities of the Microsoft Audio Stack.
5-
author: hasyashah
65
manager: nitinme
76
ms.service: azure-ai-speech
87
ms.topic: overview
9-
ms.date: 8/20/2024
10-
ms.author: hasshah
8+
ms.date: 9/12/2024
9+
author: eric-urban
10+
ms.author: eur
11+
ms.reviewer: hasshah
1112
---
1213

13-
# Audio processing
14+
# Audio processing with the Microsoft Audio Stack
1415

1516
The Microsoft Audio Stack is a set of enhancements optimized for speech processing scenarios. This includes examples like keyword recognition and speech recognition. It consists of various enhancements/components that operate on the input audio signal:
1617

articles/ai-services/speech-service/audio-processing-speech-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
title: Use the Microsoft Audio Stack (MAS) - Speech service
33
titleSuffix: Azure AI services
44
description: An overview of the features, capabilities, and restrictions for audio processing using the Speech Software Development Kit (SDK).
5-
author: hasyashah
65
manager: nitinme
76
ms.service: azure-ai-speech
87
ms.topic: how-to
9-
ms.date: 8/20/2024
10-
ms.author: hasshah
11-
ms.devlang: cpp
8+
ms.date: 9/12/2024
9+
author: eric-urban
10+
ms.author: eur
11+
ms.reviewer: hasshah
1212
ms.custom: devx-track-csharp
1313
---
1414

articles/ai-services/speech-service/batch-synthesis-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: eric-urban
66
manager: nitinme
77
ms.service: azure-ai-speech
88
ms.topic: how-to
9-
ms.date: 1/18/2024
9+
ms.date: 9/12/2024
1010
ms.author: eur
1111
---
1212

articles/ai-services/speech-service/batch-synthesis.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: eric-urban
66
manager: nitinme
77
ms.service: azure-ai-speech
88
ms.topic: how-to
9-
ms.date: 1/18/2024
9+
ms.date: 9/12/2024
1010
ms.author: eur
1111
---
1212

@@ -35,8 +35,6 @@ You can use the following REST API operations for batch synthesis:
3535
| [List batch synthesis](#list-batch-synthesis) | `GET` | texttospeech/batchsyntheses |
3636
| [Delete batch synthesis](#delete-batch-synthesis) | `DELETE` | texttospeech/batchsyntheses/YourSynthesisId |
3737

38-
<!-- | [Get operation for status monitor](#get-operation) | `GET` | texttospeech/operations/YourOperationId | -->
39-
4038
For code samples, see [GitHub](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/batch-synthesis).
4139

4240
## Create batch synthesis
@@ -48,9 +46,9 @@ To submit a batch synthesis request, construct the HTTP PUT request path and bod
4846
- Optionally you can set the `description`, `timeToLiveInHours`, and other properties. For more information, see [batch synthesis properties](batch-synthesis-properties.md).
4947

5048
> [!NOTE]
51-
> The maximum JSON payload size that will be accepted is 2 megabytes.
49+
> The maximum JSON payload size that's accepted is 2 megabytes.
5250
53-
Set the required `YourSynthesisId` in path. The `YourSynthesisId` have to be unique. It must be 3-64 long, contains only numbers, letters, hyphens, underscores and dots, starts and ends with a letter or number.
51+
Set the required `YourSynthesisId` in path. The `YourSynthesisId` must be unique. It must be 3-64 long, contains only numbers, letters, hyphens, underscores and dots, starts and ends with a letter or number.
5452

5553
Make an HTTP PUT request using the URI as shown in the following example. Replace `YourSpeechKey` with your Speech resource key, replace `YourSpeechRegion` with your Speech resource region, and set the request body properties as previously described.
5654

@@ -229,9 +227,9 @@ The response headers include `HTTP/1.1 204 No Content` if the delete request was
229227

230228
## Batch synthesis results
231229

232-
After you [get a batch synthesis job](#get-batch-synthesis) with `status` of "Succeeded", you can download the audio output results. Use the URL from the `outputs.result` property of the [get batch synthesis](#get-batch-synthesis) response.
230+
After you [get a batch synthesis job](#get-batch-synthesis) with `status` of "Succeeded", you can download the audio output results. Use the URL from the `outputs.result` property of the [batch synthesis GET](#get-batch-synthesis) response.
233231

234-
To get the batch synthesis results file, make an HTTP GET request using the URI as shown in the following example. Replace `YourOutputsResultUrl` with the URL from the `outputs.result` property of the [get batch synthesis](#get-batch-synthesis) response. Replace `YourSpeechKey` with your Speech resource key.
232+
To get the batch synthesis results file, make an HTTP GET request using the URI as shown in the following example. Replace `YourOutputsResultUrl` with the URL from the `outputs.result` property of the [batch synthesis GET](#get-batch-synthesis) response. Replace `YourSpeechKey` with your Speech resource key.
235233

236234
```azurecli-interactive
237235
curl -v -X GET "YourOutputsResultUrl" -H "Ocp-Apim-Subscription-Key: YourSpeechKey" > results.zip
@@ -331,7 +329,7 @@ HTTP 200 OK indicates that the request was successful.
331329

332330
### HTTP 201 Created
333331

334-
HTTP 201 Created indicates that the create batch synthesis request (via HTTP PUT) was successful.
332+
HTTP 201 Created indicates that the batch synthesis create request (via HTTP PUT) was successful.
335333

336334
### HTTP 204 error
337335

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@ author: eric-urban
77
ms.author: eur
88
ms.service: azure-ai-speech
99
ms.topic: how-to
10-
ms.date: 7/16/2024
10+
ms.date: 9/12/2024
1111
ms.devlang: csharp
1212
ms.custom: devx-track-csharp, devx-track-azurecli
13+
# Customer intent: As a user who implements audio transcription, I want to learn how to locate audio files for batch transcription.
1314
---
1415

1516
# Locate audio files for batch transcription

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

Lines changed: 1 addition & 1 deletion
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: 8/14/2024
10+
ms.date: 9/12/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.

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

Lines changed: 1 addition & 1 deletion
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: 7/16/2024
10+
ms.date: 9/12/2024
1111
zone_pivot_groups: speech-cli-rest
1212
ms.custom: devx-track-csharp
1313
---

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

Lines changed: 1 addition & 1 deletion
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: overview
10-
ms.date: 7/16/2024
10+
ms.date: 9/12/2024
1111
ms.devlang: csharp
1212
ms.custom: devx-track-csharp
1313
---

articles/ai-services/speech-service/bring-your-own-storage-speech-resource-speech-to-text.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
title: Use Bring your own storage (BYOS) Speech resource for Speech to text
33
titleSuffix: Azure AI services
44
description: Learn how to use Bring your own storage (BYOS) Speech resource with Speech to text.
5-
author: alexeyo26
65
manager: nitinme
76
ms.service: azure-ai-speech
87
ms.topic: how-to
9-
ms.date: 4/15/2024
10-
ms.author: alexeyo
8+
ms.date: 9/12/2024
9+
author: eric-urban
10+
ms.author: eur
11+
ms.reviewer: alexeyo
1112
---
1213

1314
# Use the Bring your own storage (BYOS) Speech resource for speech to text
@@ -18,9 +19,9 @@ Bring your own storage (BYOS) can be used in the following speech to text scenar
1819
- Real-time transcription with audio and transcription results logging enabled
1920
- Custom speech
2021

21-
One Speech resource to storage account pairing can be used for all scenarios simultaneously.
22+
One pair of a Speech resource and storage account can be used for all scenarios simultaneously.
2223

23-
This article explains in depth how to use a BYOS-enabled Speech resource in all speech to text scenarios. The article implies, that you have [a fully configured BYOS-enabled Speech resource and associated Storage account](bring-your-own-storage-speech-resource.md).
24+
This article explains in depth how to use a BYOS-enabled Speech resource in all speech to text scenarios. The article implies that you have [a fully configured BYOS-enabled Speech resource and associated Storage account](bring-your-own-storage-speech-resource.md).
2425

2526
## Data storage
2627

articles/ai-services/speech-service/bring-your-own-storage-speech-resource.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
title: Set up the Bring your own storage (BYOS) Speech resource
33
titleSuffix: Azure AI services
44
description: Learn how to set up Bring your own storage (BYOS) Speech resource.
5-
author: alexeyo26
65
manager: nitinme
76
ms.service: azure-ai-speech
87
ms.custom: devx-track-azurepowershell
98
ms.topic: how-to
10-
ms.date: 1/18/2024
11-
ms.author: alexeyo
9+
ms.date: 9/12/2024
10+
author: eric-urban
11+
ms.author: eur
12+
ms.reviewer: alexeyo
1213
---
1314

1415
# Set up the Bring your own storage (BYOS) Speech resource

0 commit comments

Comments
 (0)