Pixverse Pixverse V6 Transition
Playground
Try it on WavespeedAI!PixVerse V6 Transition creates smooth AI-generated video transitions between a start image and an optional end image. Supports 360p to 1080p resolutions, 1-15 second duration, multiple aspect ratios, optional audio generation, and multi-clip mode. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Features
PixVerse V6 Transition
PixVerse V6 Transition generates a smooth, cinematic video transition between two images. Upload a start frame and an end frame, describe the transformation, and the model produces a natural, motion-consistent clip that flows seamlessly from one scene to the other — with optional style control, multi-clip generation, and synchronized audio.
Why Choose This?
-
Start-to-end frame transitions Generates a coherent video that naturally bridges two distinct images with smooth, believable motion.
-
Prompt-guided transformation Describe how the transition should unfold — wardrobe changes, environmental shifts, camera movements, and more.
-
Multi-clip generation Enable generate_multi_clip_switch to produce dynamic transitions with varied camera angles and cuts.
-
Style control Apply a specific visual style (e.g. cyberpunk, cinematic, anime) to the transition for creative output.
-
Optional audio generation Enable generate_audio_switch to produce synchronized ambient sound alongside the transition.
-
Thinking mode Prompt optimization mode for more nuanced or complex transition descriptions.
Parameters
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired transition and transformation. |
| image | Yes | Start frame image (URL or file upload). |
| end_image | No | End frame image to transition toward (URL or file upload). |
| aspect_ratio | No | Output aspect ratio. Default: 1:1. |
| resolution | No | Output resolution: 360p, 540p, 720p (default), or 1080p. |
| duration | No | Clip length in seconds. Default: 5. |
| thinking_type | No | Enable prompt optimization mode for complex transitions. |
| generate_audio_switch | No | Whether to generate synchronized audio for the video. Default: off. |
| generate_multi_clip_switch | No | Enable multi-clip generation with dynamic camera changes. Default: off. |
| style | No | Visual style to apply to the transition (e.g. cyberpunk, cinematic). |
| negative_prompt | No | Elements to exclude from the generated transition. |
| seed | No | Random seed for reproducible results. |
How to Use
- Upload your start image — provide the opening frame of the transition.
- Write your prompt — describe how the transition should unfold (e.g. “Change the model’s clothes for a smooth transition.”).
- Upload end image (optional) — provide the target frame to transition toward.
- Select aspect ratio — choose the format that fits your target platform.
- Select resolution — 360p for drafts, 720p for standard output, 1080p for final production.
- Set duration — choose your desired clip length in seconds.
- Enable thinking_type (optional) — activate prompt optimization for complex transitions.
- Enable audio (optional) — check generate_audio_switch to generate synchronized sound.
- Enable multi-clip (optional) — check generate_multi_clip_switch for dynamic camera changes.
- Set style (optional) — apply a visual style to the transition.
- Add negative prompt (optional) — specify elements you want to avoid.
- Set seed (optional) — fix the seed for reproducible results.
- Submit — generate, preview, and download your transition video.
Pricing
| Resolution | Without Audio | With Audio |
|---|---|---|
| 360p | $0.025/s | $0.035/s |
| 540p | $0.035/s | $0.045/s |
| 720p | $0.045/s | $0.060/s |
| 1080p | $0.090/s | $0.115/s |
Billing Rules
- Billing is calculated per second of video generated
- Audio generation increases cost per second at each resolution tier
- Examples: 8s at 720p (no audio) = $0.36 — 8s at 720p (with audio) = $0.48
Best Use Cases
- Fashion & Apparel — Create smooth outfit or style change transitions for social content and lookbooks.
- Social Media Content — Generate eye-catching before-and-after transition clips for Reels and TikTok.
- Marketing & Advertising — Transition between product states, environments, or campaign visuals.
- Creative Storytelling — Bridge two scenes or time periods with a cinematic, motioned transition.
- Music Video & Art — Use style presets and multi-clip generation for visually rich transitions.
Pro Tips
- Provide both a start and end image for the most controlled and accurate transition output.
- Be specific in your prompt about what changes between the two frames — clothing, location, lighting, or time of day.
- Use multi-clip generation for transitions that benefit from dynamic camera angles and cuts.
- Use 360p at short durations to test your transition concept before committing to a high-resolution render.
- Fix the seed once you find a result you like to iterate consistently across duration and style changes.
Notes
- Both prompt and image are required fields; all other parameters are optional.
- Ensure image URLs are publicly accessible if using links rather than direct uploads.
- Please follow PixVerse’s content usage policies when crafting prompts.
Related Models
- PixVerse V6 Text-to-Video — Generate video from text prompts from scratch.
- PixVerse V6 Image-to-Video — Animate a single reference image into a cinematic video clip.
- PixVerse V6 Video Extend — Extend an existing video clip with new AI-generated footage.
Authentication
For authentication details, please refer to the Authentication Guide.
API Endpoints
Submit Task & Query Result
# Submit the task
curl --location --request POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v6/transition" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"aspect_ratio": "16:9",
"resolution": "720p",
"duration": 5,
"thinking_type": false,
"generate_audio_switch": false,
"generate_multi_clip_switch": false
}'
# Get the result
curl --location --request GET "https://api.wavespeed.ai/api/v3/predictions/${requestId}/result" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}"
Parameters
Task Submission Parameters
Request Parameters
| Parameter | Type | Required | Default | Range | Description |
|---|---|---|---|---|---|
| prompt | string | Yes | - | Text description of the desired video. | |
| image | string | Yes | - | URL of the image to use as the first frame | |
| end_image | string | No | - | - | URL of the image to use as the last frame |
| aspect_ratio | string | No | 16:9 | 16:9, 4:3, 1:1, 3:4, 9:16, 2:3, 3:2, 21:9 | The aspect ratio of the generated video |
| resolution | string | No | 720p | 360p, 540p, 720p, 1080p | The resolution of the generated video |
| duration | integer | No | 5 | 1 ~ 15 | The duration of the generated video in seconds. v6 supports values from 1 to 15 seconds |
| thinking_type | boolean | No | false | - | Prompt optimization mode |
| generate_audio_switch | boolean | No | false | - | Enable audio generation for the video. |
| generate_multi_clip_switch | boolean | No | false | - | Enable multi-clip generation with dynamic camera changes |
| style | string | No | - | anime, 3d_animation, clay, comic, cyberpunk | The style of the extended video |
| negative_prompt | string | No | - | The negative prompt for the generation. | |
| seed | integer | No | - | -1 ~ 2147483647 | Random seed for generation. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data.id | string | Unique identifier for the prediction, Task Id |
| data.model | string | Model ID used for the prediction |
| data.outputs | array | Array of URLs to the generated content (empty when status is not completed) |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.has_nsfw_contents | array | Array of boolean values indicating NSFW detection for each output |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |
Result Request Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| id | string | Yes | - | Task ID |
Result Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | integer | HTTP status code (e.g., 200 for success) |
| message | string | Status message (e.g., “success”) |
| data | object | The prediction data object containing all details |
| data.id | string | Unique identifier for the prediction, the ID of the prediction to get |
| data.model | string | Model ID used for the prediction |
| data.outputs | string | Array of URLs to the generated content (empty when status is not completed). |
| data.urls | object | Object containing related API endpoints |
| data.urls.get | string | URL to retrieve the prediction result |
| data.status | string | Status of the task: created, processing, completed, or failed |
| data.created_at | string | ISO timestamp of when the request was created (e.g., “2023-04-01T12:34:56.789Z”) |
| data.error | string | Error message (empty if no error occurred) |
| data.timings | object | Object containing timing details |
| data.timings.inference | integer | Inference time in milliseconds |