More modelsBytedanceAvatar omni human

Generate video with bytedance/avatar-omni-human

Generates a video using the bytedance/avatar-omni-human model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

audiostring

Optional background audio for the generated video, can be a URL or base64 encoded audio file.

imagestring

The portrait image to animate, can be a URL or base64 encoded image. Better results with clear, front-facing portraits with good lighting.

enable_base64_output?boolean

If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.

Defaultfalse

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "bytedance/avatar-omni-human",    "audio": "https://static.atlascloud.ai/media/videos/kQDIDSPSMfTGPqfPaDezJW3I4WK0f6FhXt17pSzrKhR5nmsTB.mp3",    "image": "https://static.atlascloud.ai/media/images/upload_e85bf7e9ab70752ac2730926434b181a.jpeg"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}