More modelsViduStart end to video 2.0

Generate video with vidu/start-end-to-video-2.0

Generates a video using the vidu/start-end-to-video-2.0 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

seed?integer

The random seed to use for the generation.

Default0
imagesarray<string>

Supports input of two images, with the first uploaded image considered as the start frame and the second image as the end frame. The model will use these provided images to generate the video. For fields that accept images: Only accept 2 images; The pixel density of the start frame and end frame should be similar. The pixel of the start frame divided by the end frame should be between 0.8 and 1.25; Images Assets can be provided via URLs or Base64 encode; You must use one of the following codecs: PNG, JPEG, JPG, WebP; The aspect ratio of the images must be less than 1:4 or 4:1; All images are limited to 50MB; The length of the base64 decode must be under 50MB, and it must include an appropriate content type string.

Default["https://static.atlascloud.ai/media/images/1745494594983907143_liqlhd9u.jpg","https://static.atlascloud.ai/media/images/1745494607637805608_31gIDzwr.jpg"]
Items2 <= items <= 2
promptstring

Text prompt: A textual description for video generation, with a maximum length of 1500 characters.

duration?integer

The duration of the generated media in seconds.

Default4
Range4 <= value
Value in4 | 8
movement_amplitude?string

The movement amplitude of objects in the frame. Defaults to auto, accepted value: auto small medium large.

Value in"auto" | "small" | "medium" | "large"

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "vidu/start-end-to-video-2.0",    "images": [      "https://static.atlascloud.ai/media/images/1745494594983907143_liqlhd9u.jpg",      "https://static.atlascloud.ai/media/images/1745494607637805608_31gIDzwr.jpg"    ],    "prompt": "the iron man transform into the sport car "  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}