Seedance 2.0 15% OFF | Create in Video Generator →
Home/Explore/Vidu/Q3/Drama Clip

Vidu Q3 Drama Clip

vidu /

Vidu Q3 Drama Clip generates short 8-12 second script-driven drama clips from structured assets, including characters, scenes, and tools. It is designed for compact scenes, storyboard shots, and focused narrative moments.

image-to-video
Input
id
name
type
image_uri

Drag & drop or click to upload

description

Drag & drop or click to upload

Idle

$0.7per run·~14 / $10

Next:

Related Models

README

Vidu Q3 Drama Clip

Vidu Q3 Drama Clip generates short 8-12 second drama clips from a script and a structured asset list. It is designed for compact narrative moments where you define the characters, scene, tools, visual references, and output controls in one request.

Why Choose This?

  • Short drama clip generation: Create focused drama fragments from 8 to 12 seconds.
  • Script-driven control: Use content to describe the plot, action, dialogue, camera movement, and visual details for the clip.
  • Structured asset control: Define characters, scenes, and tools with IDs, names, types, reference images, and descriptions.
  • Reference positioning: Use image and placement to control positioning, panorama, or step-based references.
  • Precise duration selection: Choose a fixed duration of 8, 9, 10, 11, or 12 seconds.
  • Narrative workflow: Suitable for storyboard shots, scene-level clips, ads, hooks, and short character-driven video moments.

Properties

PropertyRequiredTypeDescription
nameYesstringTask name.
contentYesstringDrama script or content. Supports up to 5000 characters.
assetsYesarray<object>Asset list. Up to 14 assets are supported; 3-10 are recommended.
assets.idYesstringAsset ID, using numeric strings such as 01, 02, 03.
assets.nameYesstringAsset name, up to 30 characters.
assets.typeYesstring enumAsset type. Supported values: character, scene, tool.
assets.image_uriYesstringReference image for this asset. Supports public image URL or Base64 image data.
assets.descriptionNostringAsset description, such as identity, appearance, age, role, scene details, or tool details.
imageNostringPositioning reference image uploaded by the user.
placementNostring enumPlacement mode: upload, panorama, or step. Default: upload.
qualityNostring enumQuality level: standard or high. Default: high.
durationYesinteger enumFixed clip duration in seconds. Supported values: 8, 9, 10, 11, and 12.
resolutionNostring enumOutput resolution: 720p or 1080p. Default: 1080p.
aspect_ratioNostring enumOutput aspect ratio: 9:16 or 16:9. Default: 9:16.
styleNostringVideo style, such as realistic, 3D modeling, or 2D animation. Limit: 30 characters; punctuation is not recommended.

Image Requirements

  • assets.image_uri supports image URL or Base64 image data.
  • Supported image formats: PNG, JPEG, JPG, and WebP.
  • Base64 input should include the content type prefix, for example: data:image/png;base64,{base64_encode}.
  • Each asset can correspond to one image.
  • Keep image URLs publicly accessible.
  • Keep images within the documented size, aspect ratio, and request body limits.

Pricing

Billing is based on effective video duration at $0.14 per second.

DurationPrice
8s$1.12
9s$1.26
10s$1.40
11s$1.54
12s$1.68

Effective duration is limited to 8-12 seconds. Missing or lower values are billed as 8 seconds; values above 12 seconds are billed as 12 seconds.

How to Use

  1. Enter name for the task.
  2. Write the drama clip script in content.
  3. Add assets for characters, scenes, or tools.
  4. Set each asset ID as 01, 02, 03, and so on.
  5. Upload or provide image_uri for every asset.
  6. Optionally provide a positioning reference image and choose placement.
  7. Select quality, duration, resolution, aspect ratio, and style as needed.
  8. Submit the task and retrieve the generated clip when complete.
Accessibility:This website uses AI models provided by third parties.

Q3 Drama Clip API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/vidu/q3/drama-clip 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 Q3 Drama Clip below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/vidu/q3/drama-clip" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "image": "https://example.com/your-input.jpg",
    "placement": "panorama",
    "duration": 8,
    "resolution": "1080p",
    "aspect_ratio": "9:16"
}'

# 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("vidu/q3/drama-clip", {
        "image": "https://example.com/your-input.jpg",
        "placement": "panorama",
        "duration": 8,
        "resolution": "1080p",
        "aspect_ratio": "9:16"
});

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

output = wavespeed.run(
    "vidu/q3/drama-clip",
    {
    "image": "https://example.com/your-input.jpg",
    "placement": "panorama",
    "duration": 8,
    "resolution": "1080p",
    "aspect_ratio": "9:16"
}
)

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

Q3 Drama Clip API — Frequently asked questions

What is the Q3 Drama Clip API?

Q3 Drama Clip is a Vidu model for video generation from images, exposed as a REST API on WaveSpeedAI. Vidu Q3 Drama Clip generates short 8-12 second script-driven drama clips from structured assets, including characters, scenes, and tools. It is designed for compact scenes, storyboard shots, and focused narrative moments. You can call it programmatically or try it from the playground above.

How do I call the Q3 Drama Clip 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/vidu/vidu-q3-drama-clip.

How much does Q3 Drama Clip cost per run?

Q3 Drama Clip starts at $0.70 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 Q3 Drama Clip accept?

Key inputs: `image`, `aspect_ratio`, `resolution`, `duration`, `assets`, `content`. 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/vidu/vidu-q3-drama-clip.

How do I get started with the Q3 Drama Clip API?

Sign up for a free WaveSpeedAI account to claim starter credits, copy your API key from /accesskey, then call the endpoint shown in the API tab of the playground. The playground also auto-generates a code sample in Python, JavaScript, or cURL for the parameters you've set.

Can I use Q3 Drama Clip outputs commercially?

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