PixVerse v5 | Extend
Extend an existing video by generating additional frames. Control duration, quality, and visual style of the extension.
Quick Start
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "pixverse-v5-extend",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/short-clip.mp4",
"prompt": "Continue the scene with the camera panning right to reveal a garden",
"duration": 8,
"quality": "720p"
}
}'
Parameters
| Parameter |
Type |
Default |
Description |
duration |
integer |
8 |
Duration of the extended video |
motion_mode |
string |
normal |
Motion mode. Options: normal |
negative_prompt |
string |
false |
Things to avoid in the video |
prompt |
string |
false |
Text prompt guiding the extension |
quality |
string |
720p |
Resolution quality. Options: 360p, 540p, 720p, 1080p |
seed |
integer |
false |
Random seed for reproducibility |
style |
string |
false |
Visual style. Options: anime, 3d_animation, clay, comic, cyberpunk |
video_url |
string |
false |
URL of the video to extend |
Output
Examples
Extend with Action
{
"model": "pixverse-v5-extend",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/car-driving.mp4",
"prompt": "The car accelerates and speeds through a winding mountain road",
"duration": 8,
"quality": "1080p"
}
}
Extend with Style
{
"model": "pixverse-v5-extend",
"version": "0.0.1",
"input": {
"video_url": "https://example.com/character-scene.mp4",
"prompt": "The character turns and walks into the sunset",
"duration": 8,
"quality": "720p",
"style": "anime",
"seed": 42
}
}
Related Models
Documentation
1---2name: pixverse-v5-extend3description: Extend existing videos using PixVerse v5. Trigger: Use when the user wants to extend a video, or requests 'pixverse extend', 'extend video', 'make video longer', or 'continue video'.4---56# PixVerse v5 | Extend78Extend an existing video by generating additional frames. Control duration, quality, and visual style of the extension.910## Quick Start1112```bash13curl -X POST https://api.eachlabs.ai/v1/prediction \14 -H "Content-Type: application/json" \15 -H "X-API-Key: $EACHLABS_API_KEY" \16 -d '{17 "model": "pixverse-v5-extend",18 "version": "0.0.1",19 "input": {20 "video_url": "https://example.com/short-clip.mp4",21 "prompt": "Continue the scene with the camera panning right to reveal a garden",22 "duration": 8,23 "quality": "720p"24 }25 }'26```2728## Parameters2930| Parameter | Type | Default | Description |31|-----------|------|---------|-------------|32| `duration` | integer | `8` | Duration of the extended video |33| `motion_mode` | string | `normal` | Motion mode. Options: `normal` |34| `negative_prompt` | string | `false` | Things to avoid in the video |35| `prompt` | string | `false` | Text prompt guiding the extension |36| `quality` | string | `720p` | Resolution quality. Options: `360p`, `540p`, `720p`, `1080p` |37| `seed` | integer | `false` | Random seed for reproducibility |38| `style` | string | `false` | Visual style. Options: `anime`, `3d_animation`, `clay`, `comic`, `cyberpunk` |39| `video_url` | string | `false` | URL of the video to extend |4041## Output4243- **Type:** video4445## Examples4647### Extend with Action48```json49{50 "model": "pixverse-v5-extend",51 "version": "0.0.1",52 "input": {53 "video_url": "https://example.com/car-driving.mp4",54 "prompt": "The car accelerates and speeds through a winding mountain road",55 "duration": 8,56 "quality": "1080p"57 }58}59```6061### Extend with Style62```json63{64 "model": "pixverse-v5-extend",65 "version": "0.0.1",66 "input": {67 "video_url": "https://example.com/character-scene.mp4",68 "prompt": "The character turns and walks into the sunset",69 "duration": 8,70 "quality": "720p",71 "style": "anime",72 "seed": 4273 }74}75```7677## Related Models7879- [PixVerse v5 Text to Video](../pixverse-v5-text-to-video/SKILL.md) - Generate videos from text80- [PixVerse v5 Image to Video](../pixverse-v5-image-to-video/SKILL.md) - Generate videos from images81- [PixVerse v5 Transition](../pixverse-v5-transition/SKILL.md) - Create transitions between images8283## Documentation8485- [EachLabs API Docs](https://docs.eachlabs.ai)