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

Wan 2.1 I2V 720P

wavespeed-ai /

WAN 2.1 i2v converts images into unlimited 720P AI videos for scalable content generation. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

image-to-video
Input

Drag & drop करें या upload के लिए click करें

preview

Idle

$0.3per run·~33 / $10

Next:

ExamplesView all

The family of three just took a selfie. They lean in together, smiling and relaxed. The daughter holds the phone and shows the screen. All three look at it with interest. They laugh softly, pointing at the photo. Their faces are close, full of warmth. The background is still the same scenic place. Candid, joyful, cinematic style

he's walking towards the camera

The two swordsmen fought with swords. Sparks flew from the clash

Begin with a close-up of the skewers sizzling over the fire, flames dancing as smoke swirls upward. Tilt the camera to follow the person in traditional attire turning the skewers with a steady hand, the firelight casting shadows. End with a quick pan to the fire as a new skewer is placed on, sparks flying briefly.

The petals start to fall around her as she slowly walks along the path, her skirt and hair fluttering softly. The sun glimmers through the branches, casting warm highlights on the scene as she pauses to look up at the sky.

The camera slowly pans as the girl walks along the rooftop edge, her hair swaying gently in the breeze. The city lights begin to flicker on as twilight deepens, creating a sense of quiet solitude. The sky turns from orange to deep purple.

An elegant young man walking confidently through an urban street at dusk, realistic textures on his leather jacket, subtle facial expressions, soft city lights reflecting on wet pavement, natural human motion captured in smooth video frames, slightly muted color palette with warm tones, crisp detail suitable for cinematic video scenes.

A stunning young woman gracefully moving through a vibrant forest, her long hair flowing dynamically as she walks, wearing a stylish modern outfit with subtle fantasy elements, expressive eyes full of life, cinematic motion blur capturing natural movements, vibrant and saturated colors with soft shadows, smooth fluid animation style, high definition detail suitable for video, multi-angle camera perspective, blending realism with subtle artistic flair, creating a captivating and immersive visual experience.

A majestic waterfall cascades down a cliff, water splashing and mist rising, sunlight piercing through the vapor to form a rainbow, camera slowly pushes in, cinematic, ultra-wide angle, 4K, hyper-detailed.

A medieval knight in ornate steel armor stands in a dimly lit armory. Sunbeams cut through a high window. He slowly lowers his helmet into place, his eyes filled with determination visible for a moment before disappearing into shadow. Extreme close-up, slow motion, dramatic chiaroscuro lighting, cinematic, 8K.

A young child laughs with pure joy as they chase shimmering soap bubbles in a sunny park. The camera follows them at a low angle, capturing their delighted expression as they reach out to pop a bubble. Vibrant colors, shallow depth of field, slow motion as a bubble pops.

A street magician in a bustling city square shuffles a deck of cards with dazzling speed. With a final flourish, he throws the cards into the air, and they transform into a flock of white doves that fly away. The crowd's amazed reaction is visible in the background. Dynamic shot, slow motion on the transformation.

Related Models

README

Wan 2.1 Image-to-Video 720p

Transform your static images into dynamic, cinematic videos with Wan 2.1 Image-to-Video 720p. This state-of-the-art model brings your photos to life with smooth motion, natural transitions, and high visual fidelity — all guided by simple text prompts.

Why It Stands Out

  • Image-driven generation: Start from any image and animate it into a coherent video while preserving the original style and composition.
  • Prompt-guided motion: Describe the action you want — camera movements, character expressions, environmental changes — and watch your vision unfold.
  • Negative prompt support: Exclude unwanted elements or artifacts for cleaner, more controlled outputs.
  • Prompt Enhancer: Built-in AI-powered prompt optimization helps you craft better descriptions for improved results.
  • Flexible duration: Generate 5-second or 10-second clips depending on your needs.
  • Reproducibility: Use the seed parameter to recreate exact results or iterate on variations.

Pricing

DurationPrice
5 seconds$0.30
10 seconds$0.45

Parameters

ParameterRequiredDescription
imageYesSource image (upload or public URL).
promptYesText description of desired motion and style.
negative_promptNoElements to avoid in the generated video.
sizeNoOutput resolution (default: 1280×720).
num_inference_stepsNoQuality/speed trade-off (default: 30).
durationNoVideo length in seconds: 5 or 10 (default: 5).
guidance_scaleNoPrompt adherence strength (default: 5).
flow_shiftNoMotion intensity control (default: 5).
seedNoSet for reproducibility; -1 for random.

How to Use

  1. Upload your source image — drag and drop, or paste a public URL.
  2. Write a prompt describing the motion, mood, and style you want. Use the Prompt Enhancer for AI-assisted optimization.
  3. Set parameters — adjust duration, guidance scale, and other settings as needed.
  4. Add a negative prompt (optional) to exclude unwanted elements.
  5. Click Run and wait for your video to generate.
  6. Preview and download the result.

Best Use Cases

  • Social Media Content — Turn product photos or portraits into eye-catching video posts.
  • Marketing & Advertising — Animate hero images for campaigns without expensive video shoots.
  • Storytelling & Concept Art — Bring storyboards and illustrations to life for pitches and presentations.
  • E-commerce — Create dynamic product showcases from static photography.
  • Personal Projects — Animate family photos, travel shots, or creative artwork.

Pro Tips for Best Quality

  • Use high-resolution, well-lit source images for optimal results.
  • Be specific in your prompt — describe camera movement, subject actions, and atmospheric details.
  • Start with lower inference steps (20–25) for quick previews, then increase for final renders.
  • Use negative prompts to reduce artifacts like blur, distortion, or unwanted motion.
  • Fix the seed when iterating to compare the effect of different parameters.

Notes

  • Ensure uploaded images or URLs are publicly accessible.
  • Processing time varies based on duration and current queue load.
  • Please ensure your prompts comply with content guidelines.
Accessibility:This website uses AI models provided by third parties.

Wan 2.1 I2v 720p API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.1/i2v-720p 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 Wan 2.1 I2v 720p below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.1/i2v-720p" \
  -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",
    "negative_prompt": "blurry, low quality, distorted",
    "size": "1280*720",
    "num_inference_steps": 30,
    "duration": 5,
    "guidance_scale": 5,
    "flow_shift": 5,
    "seed": -1
}'

# 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("wavespeed-ai/wan-2.1/i2v-720p", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "image": "https://example.com/your-input.jpg",
        "negative_prompt": "blurry, low quality, distorted",
        "size": "1280*720",
        "num_inference_steps": 30,
        "duration": 5,
        "guidance_scale": 5,
        "flow_shift": 5,
        "seed": -1
});

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

output = wavespeed.run(
    "wavespeed-ai/wan-2.1/i2v-720p",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "image": "https://example.com/your-input.jpg",
    "negative_prompt": "blurry, low quality, distorted",
    "size": "1280*720",
    "num_inference_steps": 30,
    "duration": 5,
    "guidance_scale": 5,
    "flow_shift": 5,
    "seed": -1
}
)

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

Wan 2.1 I2v 720p API — Frequently asked questions

What is the Wan 2.1 I2v 720p API?

Wan 2.1 I2v 720p is a WaveSpeedAI model for video generation from images, exposed as a REST API on WaveSpeedAI. WAN 2.1 i2v converts images into unlimited 720P AI videos for scalable content generation. 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 Wan 2.1 I2v 720p 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/wavespeed-ai/wan-2.1-i2v-720p.

How much does Wan 2.1 I2v 720p cost per run?

Wan 2.1 I2v 720p starts at $0.30 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 Wan 2.1 I2v 720p accept?

Key inputs: `prompt`, `image`, `duration`, `size`, `seed`, `guidance_scale`. 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/wavespeed-ai/wan-2.1-i2v-720p.

How long does Wan 2.1 I2v 720p take to generate?

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

Can I use Wan 2.1 I2v 720p outputs commercially?

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