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

Hailuo 02 T2V Pro

minimax /

Hailuo 02 T2V-Pro is a text-to-video model fine-tuned for ultra-clear 1080P video and responsive handling of physics-driven scenes. Ready-to-use REST API, no coldstarts, best performance, affordable pricing.

text-to-video
Giriş
The model automatically optimizes incoming prompts to enhance output quality. This also activates the safety checker, which ensures content safety by detecting and filtering potential risks.

Boşta

$0.48çalıştırma başına·~20 / $10

Sonraki:

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

A majestic dragon with shimmering emerald scales soars through a cloud-filled sky at dusk, its powerful wings beating rhythmically. The camera follows closely behind, then swoops around to reveal a sweeping panoramic view of a fantasy kingdom below, with towering castles and winding rivers, all bathed in the warm glow of the setting sun. Cinematic, high fantasy, volumetric lighting.

The girl in the image performs a traditional martial arts staff routine, spinning and striking with precision, desert setting, camera sweeps side to side

The martial artist in the image opens a stage show with a spinning jump kick, slow motion on impact, audience gasps, camera tilts up from the ground

On a sunny afternoon, a father is teaching his little daughter how to knead dough in the kitchen, with flour scattered everywhere. They laugh happily as sunlight streams through the window, illuminating the dust motes dancing in the air. Handheld camera style, warm natural light, capturing an intimate family moment.

An anime-style video of a pink-haired high school girl walking slowly under cherry blossom trees. The petals fall gently around her as the camera follows her from the side with a soft dolly shot. Her expression is peaceful, her skirt and hair moving naturally in the spring breeze. The background is softly blurred, with warm pastel lighting.

İlgili Modeller

README

Hailuo 02 — Text-to-Video (T2V Pro)

minimax/hailuo-02/t2v-pro turns plain text into cinematic 1080p video with strong prompt adherence, realistic physics, and smooth camera motion. It’s built for creators who want film-like shots without hand-animating or storyboarding.

Why it stands out

  • 1080p native output – Full-HD frames straight from the model (not upscaled).
  • Enhanced motion & physics – Handles debris, cloth, impacts, and handheld shake with believable dynamics.
  • Cinematic transitions – Temporal consistency reduces flicker and “slideshow” artifacts.
  • Reliable prompt following – Low randomness and stable re-runs make it production-friendly.

Typical use cases

  • Short-form social clips (Reels/TikTok/Shorts) with cinematic look.
  • Ads & product showcases that need camera moves and physical realism.
  • Film/game previz for scenes, shots, and mood boards.
  • Education & explainers where motion clarifies complex ideas.
  • AI storytelling—build micro-scenes purely from text.

Parameters

NameDescription
prompt*Describe scene, subjects, lighting, motion, and camera (e.g., “dolly-in through rainy neon alley, steam rising, reflections on wet pavement, moody synth score vibe”).
enable_prompt_expansionWhen on, the model refines the prompt for quality and runs a safety check.

Pricing

  • Fixed price $0.48 per run.

Tips

  • Write like a director: include shot type (wide/close-up), camera moves (pan/tilt/dolly/orbit), lighting, and mood.
  • Use motion verbs: “drifts,” “whips,” “racks focus,” “particles swirl,” “fog rolls.”
  • Iterate fast: start at 6s to nail motion/lighting, then switch to 10s for the hero take.
  • Keep style consistent: repeat key style words at the start and end of the prompt.

How to use (super short)

  1. Prompt – Write a cinematic description (motion + lighting + mood).
  2. Prompt expansion – Keep ON for smarter parsing & safety.
  3. Run – Generate, review, tweak prompt/seed, and iterate.

Example prompts

  • Epic aerial of glacial cliffs at dawn, low clouds hugging the ice; camera orbits slowly, sun flare blooms; photoreal, crisp 1080p, cinematic grade.
  • Retro-futuristic race through neon tunnel, camera dolly-zoom, motion-blur streaks, sparks from hover-wheels, synthwave palette, dramatic backlight.
  • Cozy study room, golden hour; slow push-in to a steaming mug, dust motes in sunbeam, shallow depth of field, warm film emulation.
Erişilebilirlik:Bu web sitesi, üçüncü taraflarca sağlanan yapay zeka modellerini kullanmaktadır.

Hailuo 02 T2v Pro API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/minimax/hailuo-02/t2v-pro 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 Hailuo 02 T2v Pro below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/minimax/hailuo-02/t2v-pro" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "enable_prompt_expansion": true
}'

# 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("minimax/hailuo-02/t2v-pro", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "enable_prompt_expansion": true
});

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

output = wavespeed.run(
    "minimax/hailuo-02/t2v-pro",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "enable_prompt_expansion": true
}
)

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

Hailuo 02 T2v Pro API — Frequently asked questions

What is the Hailuo 02 T2v Pro API?

Hailuo 02 T2v Pro is a MiniMax model for video generation, exposed as a REST API on WaveSpeedAI. Hailuo 02 T2V-Pro is a text-to-video model fine-tuned for ultra-clear 1080P video and responsive handling of physics-driven scenes. Ready-to-use REST API, no coldstarts, best performance, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Hailuo 02 T2v Pro 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/minimax/minimax-hailuo-02-t2v-pro.

How much does Hailuo 02 T2v Pro cost per run?

Hailuo 02 T2v Pro starts at $0.48 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 Hailuo 02 T2v Pro accept?

Key inputs: `prompt`, `enable_prompt_expansion`. 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/minimax/minimax-hailuo-02-t2v-pro.

How long does Hailuo 02 T2v Pro take to generate?

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

Can I use Hailuo 02 T2v Pro outputs commercially?

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