Vidu 2.0 | Start End to Video
Generate videos from start and end frame images using Vidu 2.0 | Start End to Video. Supports configurable duration, reproducible results via seed, configurable resolution, movement amplitude control.
Quick Start
Requires an each::labs API key. Get one at eachlabs.ai.
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "vidu-2-0-start-end-to-video",
"version": "0.0.1",
"input": {
"prompt": "Smooth transition between the two frames with natural motion",
"start_image_url": "https://example.com/start-frame.jpg",
"end_image_url": "https://example.com/end-frame.jpg"
}
}'
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
bgm |
boolean | Whether to add background music to the generated video. | |
duration |
integer | 4 | Video duration. |
end_image_url |
string | End Image | |
movement_amplitude |
string | auto | The movement amplitude of objects in the frame. Options: auto, small, medium, large |
prompt |
string | Prompt description, max 1500 characters. | |
resolution |
string | 720p | Options: 1080p, 720p |
seed |
integer | ||
start_image_url |
string |
Examples
Frame interpolation:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "vidu-2-0-start-end-to-video",
"version": "0.0.1",
"input": {
"prompt": "Smooth transition between the two frames with natural motion",
"start_image_url": "https://example.com/start-frame.jpg",
"end_image_url": "https://example.com/end-frame.jpg"
}
}'
Dramatic transformation:
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "vidu-2-0-start-end-to-video",
"version": "0.0.1",
"input": {
"prompt": "Dramatic transformation with cinematic camera movement",
"start_image_url": "https://example.com/start-frame.jpg",
"end_image_url": "https://example.com/end-frame.jpg",
"duration": 8,
"resolution": "1080p",
"movement_amplitude": "large",
"seed": 42
}
}'
Related Models
- Vidu Q1 | Start End to Video - Generate videos from start and end frame images using Vidu Q1 | Start End to Video.
- Vidu Q1 | Image to Video - Generate videos from images using Vidu Q1 | Image to Video.
- Vidu 1.5 | Image to Video - Generate videos from images using Vidu 1.5 | Image to Video.