Skip to content

Commit 7db1b0a

Browse files
Merge pull request #951 from sally-baolian/patch-31
Update personal-voice-create-voice.md
2 parents 7660708 + 905313c commit 7db1b0a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

articles/ai-services/speech-service/includes/how-to/professional-voice/deploy-endpoint/rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ You should receive a response body in the following format:
113113

114114
## Resume an endpoint
115115

116-
To suspend an endpoint, use the [Endpoints_Resume](/rest/api/aiservices/speechapi/endpoints/resume) operation of the custom voice API.
116+
To resume an endpoint, use the [Endpoints_Resume](/rest/api/aiservices/speechapi/endpoints/resume) operation of the custom voice API.
117117

118118
Make an HTTP POST request using the URI as shown in the following [Endpoints_Resume](/rest/api/aiservices/speechapi/endpoints/resume) example.
119119
- Replace `YourResourceKey` with your Speech resource key.

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,15 @@ curl -v -X PUT -H "Ocp-Apim-Subscription-Key: YourResourceKey" -H "Content-Type:
100100
"consentId": "JessicaConsentId",
101101
"audios": {
102102
"containerUrl": "https://contoso.blob.core.windows.net/voicecontainer?mySasToken",
103-
"prefix": "jessica/",
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)