Seedance 2.0 15% OFF | Create in Video Generator →

Seedance V1 Pro T2V 1080P

bytedance /

Seedance V1 Pro generates coherent multi-shot 1080p videos from text with smooth, stable motion and strong prompt fidelity. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.

text-to-video
Input
Whether to fix the camera position.

Idle

$0.6per run·~16 / $10

Next:

ExamplesView all

A rugged coastline at sunset, with large waves crashing against dramatic sea stacks. The sky is a canvas of fiery orange and deep purple, and seabirds soar gracefully above the tumultuous water.

A beautiful scene with smooth camera movement and natural motion

A young man sits motionless in a subway car, surrounded by blurred figures rushing past. [Close-up shot] on his unblinking eyes, highlighting his isolation amidst the chaos.

A close-up portrait of a model wearing a fantastical headpiece made of chocolate shards and dried flowers. [Rotating side-slide shot] begins from the side, gradually revealing the sculptural headpiece in full. In the final seconds, the camera centers on her poised and elegant face.

A man bundled in warm clothing enjoys cheese fondue at a snowy campsite, while a dog gazes longingly at the melting cheese. [Handheld close-up shot] opens on the bubbling pot, the gooey cheese stretching slowly under the heat. As he lifts a piece of bread drenched in cheese, the dog droops its ears, eyes filled with longing. [Camera pulls back slightly] to reveal a cozy camp scene: falling snow, surrounding trees, and a parked jeep in the background.

Inside a café, a close-up of an elderly man sitting in contemplation. His gaze is focused, expression shifting from thoughtful to a faint smile. He brushes back his hair, clasps his hands under his chin, then lowers them and leans forward. His eyes seem to search—and find—an answer. Finally, he squints slightly, revealing a contented, knowing smile.

[Tracking mid-shot] of a man in a suit swiftly cutting through a crowd, his expression sharp and focused. The camera follows tightly, building a sense of urgency and pressure. He halts before a train door, takes a deep breath, and looks upward.

A dreamy field of daisies sways gently in the breeze. A light mist lingers in the background, wrapping the scene in soft enchantment.

The camera enters a bright and cozy band rehearsal room—empty of people but full of instruments: guitars, amps, bass, drums. The scene is rich in realistic detail. [Slow pan] as the drumhead subtly quivers in the silence.

A lively street market in a historic European city, bustling with people Browse stalls filled with colorful fresh produce and artisan crafts. The aroma of freshly baked bread and roasted coffee fills the air.

A curious squirrel burying nuts in an autumn forest. Its bushy tail twitches as it digs, surrounded by a carpet of crisp, colorful leaves. The sunlight creates long shadows through the trees.

A majestic golden retriever, with sun-drenched fur and playful eyes, running through a field of vibrant green grass under a clear blue sky, golden hour lighting, cinematic photography.

An elderly gardener with weathered hands gently tending to vibrant rose bushes in a lush English garden. He smiles contentedly as he snips a dead bloom, the morning dew glistening on the petals.

Related Models

README

Seedance v1 Pro T2V 1080p — /seedance-v1-pro-t2v-1080p

Seedance v1 Pro T2V 1080p generates high-quality 1080p videos directly from a text prompt, optimized for smooth camera movement and natural motion. Describe the subject, action, scene, lighting, and camera intent, and the model produces a coherent clip suitable for premium story beats, marketing creatives, and cinematic concept previews. Enable camera_fixed when you want motion within the scene while keeping the framing steady.

Key capabilities

  • Text-to-video generation in 1080p with strong visual fidelity
  • Smooth camera movement and natural motion from well-specified prompts
  • Supports common aspect ratios (e.g., 16:9) for standard layouts
  • Optional camera_fixed mode for stable framing
  • Seed control for reproducible iterations

Use cases

  • Cinematic establishing shots and hero moments in 1080p
  • Marketing creatives and social ads that need sharper detail
  • High-quality pre-visualization for short scenes and trailers
  • Generating multiple “takes” by changing seed for creative exploration
  • Clean, high-resolution drafts before post-production

Pricing

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

Parameters

  • prompt (required): Describe what happens in the video (subject, action, scene, mood)
  • aspect_ratio: Output aspect ratio (e.g., 16:9, 9:16, 1:1)
  • duration: Video length in seconds
  • camera_fixed: Whether to fix the camera position
  • seed: Random seed (-1 for random; fixed value for reproducible results)

Prompting guide (T2V)

Write prompts like a director’s brief:

  • Subject: who/what is on screen
  • Action: what changes over time (walking, turning, fluttering, reacting)
  • Scene: where it happens + time of day
  • Lighting: sunrise, neon, soft volumetrics, etc.
  • Camera: dolly, orbit, pan, push-in (omit if camera_fixed is on)

Example prompts

  • A beautiful lakeside scene at golden hour, gentle wind rippling the water, trees swaying softly, cinematic lighting, camera slow dolly-in, natural motion, smooth stabilization, 1080p.
  • A city street at night with neon reflections on wet pavement, light rain drifting, pedestrians passing by, camera slow orbit around the main subject, cinematic mood.
  • A cozy interior with warm lamp light, floating dust motes, a person slowly turns and smiles, shallow depth of field, subtle handheld feel.
Accessibility:This website uses AI models provided by third parties.

Seedance v1 Pro T2v 1080p API — Quick start

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

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

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

Seedance v1 Pro T2v 1080p API — Frequently asked questions

What is the Seedance v1 Pro T2v 1080p API?

Seedance v1 Pro T2v 1080p is a ByteDance model for video generation, exposed as a REST API on WaveSpeedAI. Seedance V1 Pro generates coherent multi-shot 1080p videos from text with smooth, stable motion and strong prompt fidelity. 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 T2v 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-t2v-1080p.

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

Seedance v1 Pro T2v 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 T2v 1080p accept?

Key inputs: `prompt`, `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-t2v-1080p.

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

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