Vidu Q3 ve Q3 Pro modellerinde %50 indirim · Yalnızca WaveSpeedAI | 20 Mayıs – 2 Haziran

Pixverse V5.5 Image to Video

pixverse /

PixVerse V5.5 Image-to-Video turns a single image into cinematic clips with smooth motion, clean detail, and strong subject fidelity—ideal for logo stingers, character motion, and social posts. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

image-to-video
Giriş

Sürükleyip bırakın veya yüklemek için tıklayın

preview
Enable audio generation for the video.
Enable multi-clip generation with dynamic camera changes.

Boşta

$0.45çalıştırma başına·~22 / $10

Sonraki:

ÖrneklerTümünü görüntüle

Use the uploaded anime battle mage illustration as the first frame. Keep the character's face, pose, outfit and background consistent. Start with a medium shot, then slowly dolly the camera in toward his outstretched hand as glowing blue energy builds up, swirling around his arm. In the last third of the clip, let the energy burst outward in a shockwave of light and particles, with slight camera shake and motion blur. Style: high-energy anime action, strong contrast, neon blue and purple highlights. Sound: rising synth and orchestral music, electric crackling, a powerful impact sound at the peak of the blast, no dialogue.

Use the uploaded sci-fi corridor image as the starting frame. Keep the corridor, lighting and astronaut exactly the same. Slowly dolly the camera forward down the hallway toward the astronaut, with very subtle handheld movement. As the camera moves, add drifting dust and light fog in the air, and let a few ceiling lights flicker nervously in the distance. Style: realistic cinematic sci-fi, soft depth of field, slight film grain. Sound: low rumbling engine ambience, quiet metallic echoes, and a rising deep synth drone, no dialogue.

Use the uploaded anime rooftop illustration as the first frame. Keep the girl's face, hairstyle, outfit and rooftop background consistent. Start with the original framing, then slowly push the camera in toward her face as her hair and blazer move lightly in the wind. She blinks once, then looks at the camera and says in a calm, determined anime voice: "I'll change my future, no matter what." Style: cinematic anime, soft gradients in the sky, slight camera shake for emotional impact. Sound: gentle evening city ambience, distant traffic and cicadas, soft piano in the background, synchronized Japanese-style female voice, no extra text on screen.

İlgili Modeller

README

PixVerse v5.5 — Image-to-Video (I2V)

PixVerse v5.5 Image-to-Video animates a single image into a short cinematic clip. You provide a still frame plus a prompt; the model adds motion, camera moves, lighting changes and FX while keeping the original character, composition and style intact.

✨ Highlights

  • Image-aware animation – Uses your input image as the first frame, preserving identity, pose and layout.
  • Flexible formats – Resolutions from 360p–1080p and aspect ratios 16:9, 4:3, 1:1, 3:4, 9:16 for feeds, stories and banners.
  • Multiple durations – Generate 5s, 8s or 10s clips for hooks, shorts or slightly longer moments.
  • Prompt reasoning (thinking_type) – Optional system optimisation that can refine complex prompts before generation.

🧩 Parameters

  • prompt* (string) Up to 2048 characters describing motion, camera, lighting and style. Example: “Dynamic anime close-up, wind blowing cloak and hair, camera slowly circling, sparks and glowing embers in the background.”

  • image* (URL or upload) The source frame to animate. Front-facing, well-lit images work best.

  • resolution One of 360p, 540p, 720p, 1080p.

  • duration 5, 8 or 10 seconds.(10 seconds is not available for 1080p)

  • thinking_type

  • "enabled" – Turn on system-level reasoning to structure and optimise your prompt.

  • "disabled" – Use your prompt exactly as written.

  • "auto" (default) – Let the system decide whether to enable prompt optimizer automatically.

  • negative_prompt (optional) Words you don’t want in the video, e.g. watermark, logo, text, distortion.

  • seed (integer) Fix a seed for reproducible runs, or change it to get new variations from the same setup.

💰 Pricing

Resolution5s clip (total)8s clip (total)10s clip (total)*
360p$0.85$1.30$1.39
540p$0.85$1.30$1.39
720p$1.00$1.60$1.72
1080p$1.60$2.80-

🚀 How to Use

  1. Upload your image Add a clean, high-quality frame under image – ideally with clear subject and minimal motion blur.

  2. Write the prompt Focus on how things move, camera path and overall mood, not on redesigning the character.

  • Good: “Camera slowly pushes in, cloak flutters in the wind, sparks drift across frame, cinematic lighting.”
  • Risky: “Change clothes and hairstyle completely while the character runs and transforms into a dragon.”
  1. Choose resolution & ratio
  • 16:9 for YouTube / landscape.
  • 9:16 for TikTok / Reels / Stories.
  • 1:1 or 4:3 for feed posts.
  1. Set duration and resolution
  • Select resolution from 360p,540p,720p,1080p
  • Select duration from 5s, 8s or 10s (Not available for 1080p)
  1. (Optional) Adjust thinking_type, negative_prompt and seed
  • Use enabled or auto for complex, multi-sentence prompts. The model will optimize it for you to generate better video output.
  • Add a short negative prompt to avoid artefacts.
  • Lock the seed while you tweak small details.
  1. Run and iterate Generate the clip, review motion and framing, then refine your prompt or duration as needed.

💡 Best Practices

  • Keep the image and prompt aligned – don’t describe a totally different scene or character.
  • Use medium or close shots for character-focused animations; wide shots can feel sparse.
  • For platforms with heavy compression, prefer 720p / 1080p to keep details clean.
  • Avoid overloading the prompt with too many actions; 1–3 clear motions usually work best.
Erişilebilirlik:Bu web sitesi, üçüncü taraflarca sağlanan yapay zeka modellerini kullanmaktadır.

Pixverse v5.5 Image To Video API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/image-to-video with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Pixverse v5.5 Image To Video below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/image-to-video" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "resolution": "540p",
    "duration": 5,
    "generate_audio_switch": false,
    "generate_multi_clip_switch": false,
    "thinking_type": "auto"
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("pixverse/pixverse-v5.5/image-to-video", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "image": "https://example.com/your-input.jpg",
        "resolution": "540p",
        "duration": 5,
        "generate_audio_switch": false,
        "generate_multi_clip_switch": false,
        "thinking_type": "auto"
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "pixverse/pixverse-v5.5/image-to-video",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "resolution": "540p",
    "duration": 5,
    "generate_audio_switch": false,
    "generate_multi_clip_switch": false,
    "thinking_type": "auto"
}
)

print(output["outputs"][0])  # → URL of the generated output

Pixverse v5.5 Image To Video API — Frequently asked questions

What is the Pixverse v5.5 Image To Video API?

Pixverse v5.5 Image To Video is a Pixverse model for video generation from images, exposed as a REST API on WaveSpeedAI. PixVerse V5.5 Image-to-Video turns a single image into cinematic clips with smooth motion, clean detail, and strong subject fidelity—ideal for logo stingers, character motion, and social posts. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Pixverse v5.5 Image To Video API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/pixverse/pixverse-pixverse-v5.5-image-to-video.

How much does Pixverse v5.5 Image To Video cost per run?

Pixverse v5.5 Image To Video starts at $0.45 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Pixverse v5.5 Image To Video accept?

Key inputs: `prompt`, `image`, `resolution`, `duration`, `generate_audio_switch`, `generate_multi_clip_switch`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/pixverse/pixverse-pixverse-v5.5-image-to-video.

How long does Pixverse v5.5 Image To Video take to generate?

Average end-to-end generation time on WaveSpeedAI is around 84 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Pixverse v5.5 Image To Video outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (Pixverse). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.