More modelsVideo effectsHulk

Generate video with video-effects/hulk

Generates a video using the video-effects/hulk 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

imagestring

An image to be used as the start frame of the generated video. Requirements: 1. Only accepts 1 image; 2. Only supports single-person photos; 3. Best for half-body or full-body photos; 4. Images can be provided via URLs or Base64 encode; 5. Supported codecs: PNG, JPEG, JPG, WebP; 6. Image aspect ratio must be less than 1:4 or 4:1; 7. Maximum file size: 50MB; 8. Base64 decode length must be under 50MB with appropriate content type string.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "video-effects/hulk",    "image": "https://prod-ss-images.s3.cn-northwest-1.amazonaws.com.cn/img_v3_02jg_ab583ab9-4cae-4b67-8dc7-5781d317f7cg.png"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}