Skip to content

Commit 905313c

Browse files
Update personal-voice-create-voice.md
1 parent ac40d09 commit 905313c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

articles/ai-services/speech-service/personal-voice-create-voice.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,13 +99,16 @@ curl -v -X PUT -H "Ocp-Apim-Subscription-Key: YourResourceKey" -H "Content-Type:
9999
"projectId": "ProjectId",
100100
"consentId": "JessicaConsentId",
101101
"audios": {
102-
"containerUrl": "https://contoso.blob.core.windows.net/voicecontainer?mySasToken", // The URL must have both read and list permissions using a SAS token.
103-
"prefix": "jessica/", // Ensure the `.wav` files are located in the "jessica" folder within the container. If there is no such folder, the prefix will match `.wav` files with names starting with "jessica".
102+
"containerUrl": "https://contoso.blob.core.windows.net/voicecontainer?mySasToken",
103+
"prefix": "jessica/",
104104
"extensions": [
105105
".wav"
106106
]
107107
}
108108
} ' "https://YourResourceRegion.api.cognitive.microsoft.com/customvoice/personalvoices/JessicaPersonalVoiceId?api-version=2024-02-01-preview"
109+
110+
# Ensure the `containerUrl` has both read and list permissions.
111+
# Ensure the `.wav` files are located in the "jessica" folder within the container. The `prefix` matches all `.wav` files in the "jessica" folder. If there is no such folder, the prefix will match `.wav` files with names starting with "jessica".
109112
```
110113

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

0 commit comments

Comments
 (0)