v1

latestOpenAPI 3.0.32026-07-26214565.6 KB
Talking Photo

Create By Talking Photo

Create animated video from photo and audio

post/api/open/v3/content/video/createbytalkingphoto

Request body

talking_photo_urlstring required

Resource address of the talking picture

audio_urlstring required

Resource address of the talking audio

promptstring

Prompt words for controlling gestures and movements

resolution'720p' | '1080p'

Output video resolution. Supported values: 720p, 1080p. Default: 720p

webhookUrlstring

Callback url address based on HTTP request

Example request

{
  "talking_photo_url": "https://drz0f01yeq1cx.cloudfront.net/1688098804494-e7ca71c3-4266-4ee4-bcbb-ddd1ea490e75-9907.jpg",
  "audio_url": "https://drz0f01yeq1cx.cloudfront.net/1710752141387-e7867802-0a92-41d4-b899-9bfb23144929-4946.mp3",
  "prompt": "Throughout the entire video, maintain natural and smooth hand movements.",
  "resolution": "720p"
}

Response

Video creation request submitted successfully

codeinteger required

Interface returns business status code (1000: success)

msgstring required

Interface returns status information

Example response

{
  "code": 1000,
  "msg": "OK",
  "data": {
    "_id": "64dd90f9f0b6684651e90d60",
    "video_status": 1,
    "talking_photo": "https://***.cloudfront.net/1692242161763-4fb8c3c2-018b-4b84-82e9-413c81f26b3a-6613.jpeg"
  }
}