Pruna Ai P Video Image To Video
Playground
Try it on WavespeedAI!Pruna AI P-Video Image to Video is a fast AI video generation model that transforms input images into high-quality videos. Ready-to-use REST inference API for animating product photos, character art, marketing creatives, social media content, visual storytelling, and image-to-video workflows with simple integration, no coldstarts, and affordable pricing.
Features
Pruna AI P-Video Image-to-Video
Pruna AI P-Video Image-to-Video transforms a single reference image into a generated video clip with prompt-guided motion, controllable duration, resolution options, optional audio saving, and seed-based reproducibility. It is suitable for cinematic shots, character scenes, commercial visuals, concept videos, and other image-driven video generation workflows.
Why Choose This?
-
Image-guided video generation Start from a reference image and generate motion while preserving the overall scene, subjects, and visual identity.
-
Prompt-based motion control Use a text prompt to describe subject movement, camera behavior, emotional tone, and scene progression.
-
Flexible output settings Control duration and resolution based on quality and budget needs.
-
Optional audio saving Enable
save_audiowhen you want the saved output to include audio. -
Seed support for reproducibility Use
seedto get more consistent results across repeated runs. -
Simple pricing model Cost scales clearly with duration and output resolution.
Parameters
| Parameter | Required | Description |
|---|---|---|
| image | Yes | Reference image used as the starting visual input for video generation. |
| prompt | Yes | Text description of the desired motion, scene progression, camera movement, and style. |
| duration | No | Video duration in seconds. |
| resolution | No | Output resolution: 720p or 1080p. |
| seed | No | Random seed for reproducibility. Use the same seed to get more consistent results. |
| save_audio | No | Whether to save the generated video with audio. |
How to Use
- Upload your image — provide the reference image you want to animate.
- Write your prompt — describe the motion, subject behavior, camera movement, and mood you want.
- Set duration — choose how long the video should be.
- Choose resolution — use
720pfor lower cost or1080pfor higher quality. - Set a seed (optional) — use a fixed seed for more reproducible generations.
- Enable audio saving (optional) — turn on
save_audioif you want the saved result to include audio. - Submit — run the model and download the generated video.
Example Prompt
Two characters stand on a rainy train platform as a distant train approaches. One person tightens their grip on a suitcase while the other slowly lowers their eyes toward the unopened letter. The camera slowly pushes in between them, emphasizing the emotional distance. Preserve the same characters, faces, outfits, lighting, background, and composition while adding subtle cinematic motion and realistic atmosphere.
Pricing
Pricing is based on duration and resolution.
| Resolution | Per Second |
|---|---|
| 720p | $0.02 |
| 1080p | $0.04 |
Example Costs
| Resolution | 5s | 10s | 15s |
|---|---|---|---|
| 720p | $0.10 | $0.20 | $0.30 |
| 1080p | $0.20 | $0.40 | $0.60 |
Billing Rules
720pcosts $0.02 per second1080pcosts 2× the720prate- Pricing scales linearly with
duration seedandsave_audiodo not affect pricing
Best Use Cases
- Character scene animation — Turn still character images into short cinematic moments with subtle motion.
- Commercial image animation — Bring product, fashion, or editorial stills to life with camera and subject movement.
- Concept visualization — Convert a keyframe or story image into a motion preview for pitching and ideation.
- Mood-driven storytelling — Use prompts to shape atmosphere, pacing, and emotional tone from a single image.
- Social media video — Generate short clips from still images for promotional or narrative content.
- Creative prototyping — Explore multiple motion directions from the same base image with prompt and seed control.
Pro Tips
- Use a clean, high-quality reference image for better stability and subject preservation.
- Be specific in your prompt about motion, camera behavior, and what should remain unchanged.
- Mention preservation explicitly when identity, outfit, background, or composition must stay consistent.
- Start with shorter durations to validate motion before generating longer clips.
- Use
720pfor quick testing, then switch to1080pfor higher-quality final outputs. - Keep the same
seedwhen you want to iterate on a concept with more consistent results.
Notes
- Both
imageandpromptare required. - Pricing depends on
durationandresolution. save_audiocontrols whether the saved video includes audio, but does not affect pricing.seedhelps with reproducibility but may not guarantee identical results in every case.
Related Models
- Pruna AI P-Video Text-to-Video — Generate videos directly from natural-language prompts.
- Pruna AI P-Image Text-to-Image — Generate still images from prompts for image-first creative workflows.
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/pruna-ai/p-video/image-to-video" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer ${WAVESPEED_API_KEY}" \
--data-raw '{
"duration": 5,
"resolution": "720p",
"seed": -1,
"save_audio": true
}'
# 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 |
|---|---|---|---|---|---|
| image | string | Yes | - | Input image URL for image-to-video generation. | |
| prompt | string | Yes | - | The positive prompt for generation. | |
| duration | integer | No | 5 | 1 ~ 20 | Video duration in seconds. |
| resolution | string | No | 720p | 720p, 1080p | Output video resolution. |
| seed | integer | No | -1 | -1 ~ 2147483647 | Random seed. -1 means random. |
| save_audio | boolean | No | true | - | Save the video with audio. |
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.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. |
| 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 |