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

Seedance V1 Pro I2V 1080P

bytedance /

Seedance V1 Pro generates coherent multi-shot image-to-video outputs with smooth motion and prompt-accurate results in 1080p. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

image-to-video
Input

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

preview

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

Whether to fix the camera position.

Idle

$0.6per run·~16 / $10

Next:

ExamplesView all

Fixed shot of the man on the right side of the frame walking up to the man on the left side of the frame and expressing his strong feelings of dissatisfaction to him

Set in an underwater canyon, sunbeams pierce the water’s surface. A whale glides gently between coral cliffs. [Top-down shot] begins on shimmering sunlight, then tilts down slowly as the massive whale emerges from the shadows. As it enters full view, the camera pulls back to reveal the vast seascape. In the final moment, the whale gently pivots.

A miniature city made of cardboard and bottle caps comes alive at night. A cardboard train rolls slowly through the scene, dotted with tiny lights that softly illuminate its path.

A cinematic drone shot at sunrise over a dense forest. Golden light streams through layers of morning fog. [Slow push-in shot] above the treetops reveals a distant waterfall emerging in the background. Hyperreal detail, soft lighting, and shallow depth of field create a dreamlike atmosphere.

In a tranquil snowy landscape, a red origami crane glides weightlessly through the air, wings fluttering gracefully. The camera follows as it skims over a lake, where the reflection of distant mountains and a pale sun shimmer on the surface.

A watercolor-style illustration of a forest. A small white rabbit wearing a bow collects mushrooms amidst soft, painted foliage.

The camera begins in a dimly lit interrogation room, focusing closely on the eyes of a white woman in her early 30s. It slowly pulls back to reveal her full face—platinum blonde hair slightly disheveled, her expression calm but betraying flickers of anxiety. She sits upright in a metal chair, tense wrists resting on the cold tabletop. A harsh overhead light casts sharp shadows across her face, creating stark contrast and strong shadow lines.

Inside a subway car, a man sits perfectly still amid the rushing blur of commuters. [Static front-facing shot] frames him in the center of the bench. Blurred figures pass as streaks—people boarding, switching seats—while he remains motionless, staring forward. Occasionally, ghostlike faces flash into view within motion trails. Fluorescent lights above flicker faintly.

A cluster of poppies sways in the breeze—white, yellow, and vibrant red. Sunlight filters through the petals from behind, revealing their delicate translucency.

Related Models

README

Seedance v1 Pro I2V 1080p — /seedance-v1-pro-i2v-1080p

Seedance v1 Pro I2V 1080p generates high-quality 1080p videos from a single reference image plus a motion-focused prompt. Upload a starting image, describe the action and camera intent, and the model animates the scene while keeping the input image as the visual anchor. You can also provide an optional last_image to better control how the clip ends, and enable camera_fixed to keep the camera locked while motion happens within the frame.

Key capabilities

  • Image-to-video generation anchored to a reference image (1080p output)
  • Natural motion and smooth animation for character actions and scene beats
  • Optional last_image support for improved ending continuity
  • Optional camera_fixed mode for fixed framing (no camera movement)
  • Seed control for reproducible iterations

Use cases

  • High-resolution character animation from a single keyframe
  • Cinematic scene beats with controlled blocking and fixed shots
  • Start-to-end guided shots using last_image for more predictable endings
  • Marketing and storytelling clips that need sharper detail at 1080p
  • Generating multiple takes by changing seed while keeping the same prompt

Pricing

DurationPrice per video
5s$0.60
10s$1.20
15s$1.80
20s$2.40

Inputs

  • image (required): starting reference image (first-frame anchor)
  • prompt (required): motion and scene direction
  • last_image (optional): end-frame reference to guide the finishing state

Parameters

  • prompt: describes subject action, scene motion, and camera direction
  • image: input image (upload or URL)
  • last_image: optional end reference image (upload or URL)
  • duration: video length in seconds
  • aspect_ratio: output aspect ratio selection
  • camera_fixed: whether to fix the camera position
  • seed: random seed (-1 for random; fixed value for reproducible results)
  • safety checker: enabled filtering for safer generations (if available in your UI)

Prompting guide (I2V)

For better control, write prompts like a director’s beat sheet:

  • Blocking: who moves where (walks from right to left, stops, gestures)
  • Emotion: facial expression and body language cues (angry, disappointed, calm)
  • Camera: fixed shot, slow push-in, pan, orbit (or keep camera_fixed on)
  • Continuity: keep identity, outfits, and scene layout consistent with the input image

Example prompts

  • Fixed shot. The man on the right walks toward the man on the left and confronts him, visibly dissatisfied. Strong body language, tense atmosphere, natural motion, realistic lighting, 5 seconds.
  • A character turns, takes two steps forward, and points while speaking, cinematic lighting, subtle wind and particles, camera fixed, 5 seconds.
  • Slow push-in on a hero’s face as their expression changes from calm to determined, shallow depth of field, cinematic mood, 5 seconds.
Accessibility:This website uses AI models provided by third parties.

Seedance v1 Pro I2v 1080p API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bytedance/seedance-v1-pro-i2v-1080p 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 Seedance v1 Pro I2v 1080p below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/seedance-v1-pro-i2v-1080p" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg",
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "duration": 5,
    "aspect_ratio": "21:9",
    "camera_fixed": false,
    "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("bytedance/seedance-v1-pro-i2v-1080p", {
        "image": "https://example.com/your-input.jpg",
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "duration": 5,
        "aspect_ratio": "21:9",
        "camera_fixed": false,
        "seed": -1
});

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

output = wavespeed.run(
    "bytedance/seedance-v1-pro-i2v-1080p",
    {
    "image": "https://example.com/your-input.jpg",
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "duration": 5,
    "aspect_ratio": "21:9",
    "camera_fixed": false,
    "seed": -1
}
)

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

Seedance v1 Pro I2v 1080p API — Frequently asked questions

What is the Seedance v1 Pro I2v 1080p API?

Seedance v1 Pro I2v 1080p is a ByteDance model for video generation from images, exposed as a REST API on WaveSpeedAI. Seedance V1 Pro generates coherent multi-shot image-to-video outputs with smooth motion and prompt-accurate results in 1080p. 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 Seedance v1 Pro I2v 1080p 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/bytedance/bytedance-seedance-v1-pro-i2v-1080p.

How much does Seedance v1 Pro I2v 1080p cost per run?

Seedance v1 Pro I2v 1080p starts at $0.60 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 Seedance v1 Pro I2v 1080p accept?

Key inputs: `prompt`, `image`, `aspect_ratio`, `duration`, `seed`, `camera_fixed`. 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/bytedance/bytedance-seedance-v1-pro-i2v-1080p.

How long does Seedance v1 Pro I2v 1080p take to generate?

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

Can I use Seedance v1 Pro I2v 1080p outputs commercially?

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