You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/personal-voice-create-consent.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,9 @@ ms.service: azure-ai-speech
8
8
ms.custom:
9
9
- build-2024
10
10
ms.topic: how-to
11
-
ms.date: 2/7/2024
11
+
ms.date: 9/20/2024
12
12
ms.author: eur
13
+
#Customer intent: As a developer, I want to learn how to add user consent to the personal voice project.
13
14
---
14
15
15
16
# Add user consent to the personal voice project
@@ -25,7 +26,7 @@ You need an audio recording of the user speaking the consent statement.
25
26
You can get the consent statement text for each locale from the text to speech GitHub repository. See [verbal-statement-all-locales.txt](https://github.com/Azure-Samples/Cognitive-Speech-TTS/blob/master/CustomVoice/script/verbal-statement-all-locales.txt) for the consent statement. Below is a sample for the `en-US` locale:
26
27
27
28
```
28
-
"I [state your first and last name] am aware that recordings of my voice will be used by [state the name of the company] to create and use a synthetic version of my voice."
29
+
"I [state your first and last name] am aware that recordings of my voice will be used by [state the name of the company] to create and use a synthetic version of my voice."
29
30
```
30
31
31
32
## Add consent from a file
@@ -60,8 +61,8 @@ You should receive a response body in the following format:
60
61
"companyName": "Contoso",
61
62
"locale": "en-US",
62
63
"status": "NotStarted",
63
-
"createdDateTime": "2023-04-01T05:30:00.000Z",
64
-
"lastActionDateTime": "2023-04-02T10:15:30.000Z"
64
+
"createdDateTime": "2024-09-01T05:30:00.000Z",
65
+
"lastActionDateTime": "2024-09-02T10:15:30.000Z"
65
66
}
66
67
```
67
68
@@ -111,8 +112,8 @@ You should receive a response body in the following format:
Copy file name to clipboardExpand all lines: articles/ai-services/speech-service/power-automate-batch-transcription.md
+22-7Lines changed: 22 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,8 @@ author: eric-urban
7
7
ms.author: eur
8
8
ms.service: azure-ai-speech
9
9
ms.topic: how-to
10
-
ms.date: 1/21/2024
10
+
ms.date: 9/20/2024
11
+
#Customer intent: As a low-code developer, I want to learn how to use Power Automate to transcribe audio files from an Azure Storage container.
11
12
---
12
13
13
14
# Power automate batch transcription
@@ -35,14 +36,22 @@ Follow these steps to create a new storage account and container.
35
36
1. In the **Data storage** group in the left pane, select **Containers**.
36
37
1. Select **+ Container**.
37
38
1. Enter a name for the new container such as "batchtranscription" and select **Create**.
38
-
1.Get the **Access key** for the storage account. Select **Access keys** in the **Security + networking** group in the left pane. View and take note of the **key1** (or **key2**) value. You need the access key later when you [configure the connector](#create-a-power-automate-flow).
39
+
1. Select **Access keys** in the **Security + networking** group in the left pane. View and take note of the **key1** (or **key2**) value. You need the access key later when you [configure the connector](#create-a-power-automate-flow).
39
40
40
41
Later you'll [upload files to the container](#upload-files-to-the-container) after the connector is configured, since the events of adding and modifying files kick off the transcription process.
41
42
42
43
## Create a Power Automate flow
43
44
45
+
The steps to create your power automate flow are:
46
+
1.[Create a new flow](#create-a-new-flow)
47
+
1.[Configure the flow trigger](#configure-the-flow-trigger)
48
+
1.[Create SAS URI by path](#create-sas-uri-by-path)
49
+
1.[Create transcription](#create-transcription)
50
+
1.[Test the flow](#test-the-flow)
51
+
44
52
### Create a new flow
45
53
54
+
To create a new flow, follow these steps:
46
55
1.[Sign in to power automate](https://make.powerautomate.com/)
47
56
1. From the collapsible menu on the left, select **Create**.
48
57
1. Select **Automated cloud flow** to start from a blank flow that can be triggered by a designated event.
@@ -54,15 +63,17 @@ Later you'll [upload files to the container](#upload-files-to-the-container) aft
54
63
55
64
### Configure the flow trigger
56
65
66
+
To configure the flow trigger, follow these steps:
67
+
1. Select **Add a trigger** to configure the event that starts the flow.
57
68
1. Choose a trigger from the [Azure Blob Storage connector](/connectors/azureblob/). For this example, enter "blob" in the search connectors and triggers box to narrow the results.
58
69
1. Under the **Azure Blob Storage** connector, select the **When a blob is added or modified** trigger.
59
70
60
-
:::image type="content" source="./media/power-platform/flow-search-blob.png" alt-text="A screenshot of the search connectors and triggers dialog." lightbox="./media/power-platform/flow-search-blob.png":::
61
-
71
+
:::image type="content" source="./media/power-platform/add-trigger-search-blob.png" alt-text="A screenshot of the search connectors and triggers dialog." lightbox="./media/power-platform/add-trigger-search-blob.png":::
72
+
62
73
1. Configure the Azure Blob Storage connection.
63
74
1. From the **Authentication type** drop-down list, select **Access Key**.
64
75
1. Enter the account name and access key of the Azure Storage account that you [created previously](#create-the-azure-blob-storage-container).
65
-
1. Select **Create** to continue.
76
+
1. Select **Create new** to continue.
66
77
1. Configure the **When a blob is added or modified** trigger.
67
78
68
79
:::image type="content" source="./media/power-platform/flow-connection-settings-blob.png" alt-text="A screenshot of the dialog to configure the blob trigger." lightbox="./media/power-platform/flow-connection-settings-blob.png":::
@@ -76,6 +87,8 @@ To transcribe an audio file that's in your [Azure Blob Storage container](#creat
76
87
77
88
The [Azure Blob Storage connector](/connectors/azureblob/) supports SAS URIs for individual blobs, but not for entire containers.
78
89
90
+
To create a SAS URI for a blob, follow these steps:
91
+
79
92
1. Select **+ New step** to begin adding a new operation for the Azure Blob Storage connector.
80
93
1. Enter "blob" in the search connectors and actions box to narrow the results.
81
94
1. Under the **Azure Blob Storage** connector, select the **Create SAS URI by path** trigger.
@@ -88,7 +101,8 @@ By now, you should have a flow that looks like this:
88
101
89
102
### Create transcription
90
103
91
-
1. Select **+ New step** to begin adding a new operation for the [Azure AI services for Batch Speech to text connector](/connectors/cognitiveservicesspe/).
104
+
To create a transcription, follow these steps:
105
+
1. Select **+ New step** to begin adding a new operation for the [batch speech to text connector](/connectors/cognitiveservicesspe/).
92
106
1. Enter "batch speech to text" in the search connectors and actions box to narrow the results.
93
107
1. Select the **Azure AI services for Batch Speech to text** connector.
94
108
1. Select the **Create transcription** action.
@@ -112,6 +126,7 @@ By now, you should have a flow that looks like this:
112
126
113
127
### Test the flow
114
128
129
+
To test the flow, follow these steps:
115
130
1. From the top navigation menu, select **Flow checker**. In the side panel that appears, you shouldn't see any errors or warnings. If you do, then you should fix them before continuing.
116
131
1. From the top navigation menu, save the flow and select **Test the flow**. In the window that appears, select **Test**.
117
132
1. In the side panel that appears, select **Manually** and then select **Test**.
@@ -145,6 +160,6 @@ You can select and expand the **Create transcription** to see detailed input and
145
160
146
161
## Next steps
147
162
148
-
-[Azure AI services for Batch Speech to text connector](/connectors/cognitiveservicesspe/)
163
+
-[Batch speech to text connector](/connectors/cognitiveservicesspe/)
0 commit comments