Vidu Q3 और Q3 Pro मॉडल पर 50% छूट · केवल WaveSpeedAI | 20 मई – 2 जून

Pixverse V5.5 Text to Video

pixverse /

PixVerse V5.5 transforms text prompts into realistic videos with smooth motion and natural detail in seconds—ideal for stories, ads, and social clips. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

text-to-video
Input
Enable audio generation for the video.
Enable multi-clip generation with dynamic camera changes.

Idle

$0.45per run·~22 / $10

Next:

ExamplesView all

An anime scene on a city rooftop at sunset. Start with a wide shot of a pastel orange sky and distant skyline, wind gently moving laundry lines and antenna cables. Cut to a medium shot of a teenage girl in a school uniform standing at the edge, hair and ribbon blowing in the wind, anime style linework and shading. She turns toward the camera and says softly, "I'll change everything, starting today." Soft piano and cicadas in the background, Japanese-anime voice acting, subtle camera shake and zoom for emotional emphasis.

A fast-paced cyberpunk chase at night. Begin with a wide aerial shot of a neon-lit alley full of holographic signs and rain, a runner in a glowing jacket dashing through the crowd. Cut to a low tracking shot at ground level, water splashing in slow motion as they jump over a puddle, neon reflections everywhere. Final shot: dynamic side view as they leap over a gap between rooftops, the camera whipping past to reveal giant holographic billboards behind them. Style: hyper-realistic cyberpunk, strong magenta and teal lights. Sound: heavy electronic beat, rain, distant sirens, their breath and footsteps clearly audible, no dialogue.

A modern coffee commercial. First shot: extreme close-up of hot espresso pouring into a glass cup in slow motion, rich crema forming, warm morning light on a wooden table. Second shot: medium shot of a young professional picking up the cup at a kitchen counter, smiling and taking a sip, steam rising. Final shot: overhead view of the cup on the table next to a laptop and notebook, sunlight making a soft glow around the cup. Style: clean, realistic, high-end commercial look. Sound: gentle acoustic guitar, subtle coffee pouring and cup clink, soft female voiceover saying one short line: "Start today with something warm."

Related Models

README

PixVerse v5.5 — Text-to-Video

PixVerse v5.5 Text-to-Video turns a written scene description into a short animated clip. You control resolution (360p–1080p), duration (5s / 8s / 10s) and resolution_ratio (16:9,4:3,1:1,3:4,9:16), while the model handles camera motion, lighting and transitions for you.

✨ Highlights

  • Multiple resolutions – 360p, 540p, 720p, 1080p for previews through to final export.
  • Flexible aspect ratios – 16:9, 4:3, 1:1, 3:4, 9:16 to match feeds, stories and banners.
  • Variable duration – 5, 8 or 10 seconds per clip.
  • Prompt reasoning (thinking_type) – optional system-side enhancement that can refine and structure your prompt.
  • Negative prompt support – steer the model away from artefacts such as “watermark”, “text”, “distortion”.
  • Seed control – fix a seed for reproducible generations, or vary it for multiple takes.

🧩 Parameters

  • prompt* (string) : Up to 2048 characters describing the scene, pacing and camera moves.

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

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

  • resolution_ratio : 16:9, 4:3, 1:1, 3:4, 9:16.

  • thinking_type :

  • Enabled: Turn on system-level reasoning/optimisation of your prompt.

  • Disabled: Use your prompt as-is.

  • Auto (default): Let the system decide whether to enable it.

  • negative_prompt (optional) : Terms you don’t want to see in the video (e.g. watermark, text, logo, glitch).

  • seed : Integer for reproducibility. Use a fixed value to re-run the same idea; change it to get new variations.

🚀 How to Use

  1. Write the prompt
  • Describe key shots, mood and motion, e.g. “Anime rooftop at sunset, slow dolly-in toward the character, hair and clothes moving in the wind, cinematic lighting.”
  1. Set resolution & resolution_ratio
  • Select resolution from 360p,540p,720p and 1080p.
  • 9:16 for TikTok, Reels.
  • 16:9 for Youtube videos
  • 1:1 for Instagram.
  • 4:3 for feed posts and thumbnails.
  1. Choose duration
  • 5s for quick previews or punchy hooks.
  • 8s for more developed mini-scenes.
  1. (Optional) Adjust thinking & negative_prompt
  • Set thinking_type="enabled" if you want the system to help structure a complex prompt.
  • Add a short negative prompt to suppress text, artefacts or unwanted objects.
  1. Set seed
  • Keep a seed fixed while you tweak the prompt.
  • Change it when you’re happy with the setup but want new takes.
  1. Run and download
  • Generate the clip, review, then iterate on prompt, duration or aspect ratio as needed.

💡 Prompt & Quality Tips

  • Write shot-by-shot for best results (wide → medium → close-up, etc.).
  • Keep the number of major events small; let the model focus on a few strong beats.
  • Higher resolutions (720p / 1080p) are better for export and editing; use 360p / 540p for fast generation.
  • For vertical platforms, set **resolution_ratio = 9:16 or 3:4 ** from the start to avoid awkward cropping.
Accessibility:This website uses AI models provided by third parties.

Pixverse v5.5 Text To Video API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/text-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 Text To Video below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/pixverse/pixverse-v5.5/text-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",
    "resolution": "540p",
    "duration": 5,
    "resolution_ratio": "1:1",
    "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/text-to-video", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "resolution": "540p",
        "duration": 5,
        "resolution_ratio": "1:1",
        "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/text-to-video",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "resolution": "540p",
    "duration": 5,
    "resolution_ratio": "1:1",
    "generate_audio_switch": false,
    "generate_multi_clip_switch": false,
    "thinking_type": "auto"
}
)

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

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

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

Pixverse v5.5 Text To Video is a Pixverse model for video generation, exposed as a REST API on WaveSpeedAI. PixVerse V5.5 transforms text prompts into realistic videos with smooth motion and natural detail in seconds—ideal for stories, ads, and social clips. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Pixverse v5.5 Text 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-text-to-video.

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

Pixverse v5.5 Text 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 Text To Video accept?

Key inputs: `prompt`, `resolution`, `duration`, `generate_audio_switch`, `generate_multi_clip_switch`, `resolution_ratio`. 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-text-to-video.

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

Average end-to-end generation time on WaveSpeedAI is around 35 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 Text 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.