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

Dreamina V3.0 Pro Text to Video

bytedance /

Dreamina V3.0 Pro turns text or image prompts into 1080P professional videos with natural dynamics, diverse styles, and multi-scene narratives. Ready REST API; best performance, no coldstarts, affordable pricing.

text-to-video
Input

Idle

$0.6per run·~16 / $10

Next:

ExamplesView all

A traveler with a backpack walks along a winding trail in the Himalayas. Snow-capped peaks rise in the distance as colorful prayer flags flutter in the cold mountain wind. The air feels crisp and pure, carrying a sense of freedom and discovery.

A young woman sits by the window of a small café on a rainy afternoon, sipping coffee while looking outside. Soft natural light filters through the glass, raindrops sliding down slowly. The camera stays steady as the scene captures her quiet, reflective mood.

A busy street in Tokyo at night, filled with neon lights and people crossing the intersection. Cars pass by, reflections glowing on the wet pavement. The camera pans slightly, showing the vibrant, dynamic energy of the city.

On a mountain peak at sunrise, a young man stands tall, his coat fluttering in the wind. He gazes toward the distant horizon with determination in his eyes. Behind him, the sky glows with golden light, outlining his silhouette in a heroic and inspiring way.

A golden retriever runs freely through a field of wildflowers, chasing butterflies under the afternoon sun. The scene is filled with warmth, playfulness, and the pure joy of companionship.

A lone cyclist rides through a desert road at sunset, the horizon stretching endlessly. The sky burns in shades of red and purple as dust swirls around the wheels, capturing the spirit of solitude and perseverance.

Cherry blossoms bloom along a riverside in spring. A gentle breeze scatters petals into the air as couples walk hand in hand along the water’s edge.

A lone figure sits on the edge of a cliff, gazing at the ocean below. The wind blows through their hair as waves crash against the rocks, a feeling of both peace and melancholy filling the air.

Related Models

README

Dreamina V3.0 Pro — Text-to-Video

Dreamina V3.0 Pro Text-to-Video is premium text-to-video generation model that creates stunning, cinematic videos from text descriptions. Generate high-quality videos with smooth motion, rich detail, and flexible aspect ratios — perfect for professional content creation.

Why It Stands Out

  • Premium quality: Pro-level output with exceptional detail, motion, and visual fidelity.
  • Prompt Enhancer: Built-in AI-powered prompt optimization for better results.
  • Flexible aspect ratios: Wide range of formats from ultrawide 21:9 to ultra-tall 9:21.
  • Cinematic output: Produces professional-grade videos suitable for various platforms.
  • Reproducibility: Use the seed parameter to recreate exact results.

Parameters

ParameterRequiredDescription
promptYesText description of the video you want to generate.
aspect_ratioNoOutput aspect ratio (default: 16:9).
seedNoSet for reproducibility; -1 for random.

Supported Aspect Ratios

Aspect RatioBest For
16:9YouTube, widescreen displays
4:3Classic format, presentations
1:1Instagram posts, social media squares
3:4Portrait photos, Pinterest
9:16TikTok, Instagram Stories, Reels
21:9Cinematic ultrawide content
9:21Ultra-tall vertical content

How to Use

  1. Write a prompt describing the scene, action, and style you want. Use the Prompt Enhancer for AI-assisted optimization.
  2. Select aspect ratio — choose the format that fits your platform.
  3. Set a seed (optional) for reproducible results.
  4. Click Run and wait for your video to generate.
  5. Preview and download the result.

Best Use Cases

  • Social Media Content — Create platform-optimized videos for any channel.
  • Marketing & Advertising — Produce high-quality promotional videos and ad creatives.
  • Film & Storytelling — Generate cinematic scenes for short films and narratives.
  • Travel & Lifestyle — Create immersive visual content for travel and lifestyle brands.
  • Music Videos — Generate visual content for songs and audio tracks.

Pricing

OutputPrice
Per video$0.60

Pro Tips for Best Quality

  • Be detailed in your prompt — describe subject, action, environment, lighting, and mood.
  • Include atmospheric details like weather, time of day, and sensory descriptions.
  • Use cinematic keywords like "snow-capped peaks," "colorful prayer flags," or "crisp mountain air."
  • Choose the right aspect ratio for your target platform before generating.
  • Fix the seed when iterating to compare different prompt variations.

Notes

  • Processing time varies based on current queue load.
  • Please ensure your prompts comply with content guidelines.
Accessibility:This website uses AI models provided by third parties.

Dreamina v3.0 Pro Text To Video API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bytedance/dreamina-v3.0-pro/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 Dreamina v3.0 Pro Text To Video below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/dreamina-v3.0-pro/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",
    "aspect_ratio": "16:9",
    "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/dreamina-v3.0-pro/text-to-video", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "aspect_ratio": "16:9",
        "seed": -1
});

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

output = wavespeed.run(
    "bytedance/dreamina-v3.0-pro/text-to-video",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "aspect_ratio": "16:9",
    "seed": -1
}
)

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

Dreamina v3.0 Pro Text To Video API — Frequently asked questions

What is the Dreamina v3.0 Pro Text To Video API?

Dreamina v3.0 Pro Text To Video is a ByteDance model for video generation, exposed as a REST API on WaveSpeedAI. Dreamina V3.0 Pro turns text or image prompts into 1080P professional videos with natural dynamics, diverse styles, and multi-scene narratives. Ready REST API; best performance, no coldstarts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Dreamina v3.0 Pro 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/bytedance/bytedance-dreamina-v3.0-pro-text-to-video.

How much does Dreamina v3.0 Pro Text To Video cost per run?

Dreamina v3.0 Pro Text To Video 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 Dreamina v3.0 Pro Text To Video accept?

Key inputs: `prompt`, `aspect_ratio`, `seed`. 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-dreamina-v3.0-pro-text-to-video.

How long does Dreamina v3.0 Pro Text To Video take to generate?

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

Can I use Dreamina v3.0 Pro Text To Video 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.