Add a Voice
🕴Selecting the ideal voice for your video.
This page provides steps on selecting a human sounding voice to create a video by utilizing the powerful feature of Studio Express.
Follow the steps below:
- Set the video's name that you want to create on the
videoTitle
. - There are two ways to choose an actor:
- Using
voiceId
. To select a specific voiceover from our available options, please refer to the list of available voiceovers and use the corresponding Voice ID. - Using
voiceOverId
. If you want to specify a particular voiceover that is part of our system, you can use the Voiceover ID to reference it in your settings. - Using
voiceOverName
. Like voiceOverId, you can reference a specific voiceover by its name within our system. - Using
voiceOverUrl
. Suppose you have a URL pointing to a voiceover in our system. In that case, you can use it directly to reference that particular voiceover.t example to select an avatar is as follows:
- Using
Caution:
Don't forget to replace the placeholder "YOUR API KEY" with your unique API key in the header. If you haven't obtained one yet, please contact us at [email protected], and we will provide one as soon as possible.
curl -X 'POST' \
'https://api.yepic.ai/v1/talkingphotos' \
-H 'accept: application/json' \
-H 'X-Api-Key: 194bbf67-e6fd-45da-943f-773ee2ed83a2' \
-H 'Content-Type: application/json' \
-d
'
{
"parentId": null,
"groupId": null,
"draft": false,
"avatarId": "15a861f5-0f6e-4298-b26f-7c7e72c76dc3",
"avatarName": null,
"avatarUrl": null,
"fullFrame": true,
"dynamic": false,
"voiceId": "en-US-JennyMultilingualNeural",
"voiceOverId": "af-ZA-AdriNeural",
"voiceOverName": null,
"voiceOverUrl": "https://file.api.audio/voice-samples/adri.mp3",
"script": "Hello I try this from Swagger",
"videoFormat": "mp4",
"videoWidth": 256,
"videoHeight": 256,
"videoTitle": "My talking photo video title.",
"visibility": "Public"
}
'
📌 Need help?
Updated 2 months ago