Vidu 1.5 | Start End to Video
Generate videos from start and end frame images using Vidu 1.5 | 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-1-5-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 Url. Options: png, jpeg, jpg, webp |
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, 360p |
seed |
integer |
|
Seed |
start_image_url |
string |
|
Start Image Url. Options: png, jpeg, jpg, webp |
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-1-5-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-1-5-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
Documentation
1---2name: vidu-1-5-start-end-to-video3description: Vidu 1.5 | Start End to Video. Generate videos from start and end frame images using Vidu 1.5 | Start End to Video. Triggers: start end to video, video generation, vidu4---56# Vidu 1.5 | Start End to Video78Generate videos from start and end frame images using Vidu 1.5 | Start End to Video. Supports configurable duration, reproducible results via seed, configurable resolution, movement amplitude control.910## Quick Start1112> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).1314```bash15curl -X POST https://api.eachlabs.ai/v1/prediction \16 -H "Content-Type: application/json" \17 -H "X-API-Key: $EACHLABS_API_KEY" \18 -d '{19 "model": "vidu-1-5-start-end-to-video",20 "version": "0.0.1",21 "input": {22 "prompt": "Smooth transition between the two frames with natural motion",23 "start_image_url": "https://example.com/start-frame.jpg",24 "end_image_url": "https://example.com/end-frame.jpg"25 }26 }'27```2829## Parameters3031| Parameter | Type | Default | Description |32|-----------|------|---------|-------------|33| `bgm` | boolean | | Whether to add background music to the generated video. |34| `duration` | integer | 4 | Video duration. |35| `end_image_url` | string | | End Image Url. Options: `png`, `jpeg`, `jpg`, `webp` |36| `movement_amplitude` | string | auto | The movement amplitude of objects in the frame. Options: `auto`, `small`, `medium`, `large` |37| `prompt` | string | | Prompt description, max 1500 characters. |38| `resolution` | string | 720p | Options: `1080p`, `720p`, `360p` |39| `seed` | integer | | Seed |40| `start_image_url` | string | | Start Image Url. Options: `png`, `jpeg`, `jpg`, `webp` |4142## Examples4344**Frame interpolation:**45```bash46curl -X POST https://api.eachlabs.ai/v1/prediction \47 -H "Content-Type: application/json" \48 -H "X-API-Key: $EACHLABS_API_KEY" \49 -d '{50 "model": "vidu-1-5-start-end-to-video",51 "version": "0.0.1",52 "input": {53 "prompt": "Smooth transition between the two frames with natural motion",54 "start_image_url": "https://example.com/start-frame.jpg",55 "end_image_url": "https://example.com/end-frame.jpg"56 }57 }'58```5960**Dramatic transformation:**61```bash62curl -X POST https://api.eachlabs.ai/v1/prediction \63 -H "Content-Type: application/json" \64 -H "X-API-Key: $EACHLABS_API_KEY" \65 -d '{66 "model": "vidu-1-5-start-end-to-video",67 "version": "0.0.1",68 "input": {69 "prompt": "Dramatic transformation with cinematic camera movement",70 "start_image_url": "https://example.com/start-frame.jpg",71 "end_image_url": "https://example.com/end-frame.jpg",72 "duration": 8,73 "resolution": "1080p",74 "movement_amplitude": "large",75 "seed": 4276 }77 }'78```7980## Related Models8182- [Vidu Q1 | Start End to Video](../vidu-q-1-start-end-to-video/) - Generate videos from start and end frame images using Vidu Q1 | Start End to Video.83- [Vidu Q1 | Image to Video](../vidu-q-1-image-to-video/) - Generate videos from images using Vidu Q1 | Image to Video.84- [Vidu 1.5 | Image to Video](../vidu-1-5-image-to-video/) - Generate videos from images using Vidu 1.5 | Image to Video.8586## Documentation8788- [each::labs Docs](https://docs.eachlabs.ai)89- [API Reference](https://docs.eachlabs.ai/api/overview)