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.
Idle

$0.7per run·~14 / $10
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.
content to describe the plot, action, dialogue, camera movement, and visual details for the clip.image and placement to control positioning, panorama, or step-based references.8, 9, 10, 11, or 12 seconds.| Property | Required | Type | Description |
|---|---|---|---|
| name | Yes | string | Task name. |
| content | Yes | string | Drama script or content. Supports up to 5000 characters. |
| assets | Yes | array<object> | Asset list. Up to 14 assets are supported; 3-10 are recommended. |
| assets.id | Yes | string | Asset ID, using numeric strings such as 01, 02, 03. |
| assets.name | Yes | string | Asset name, up to 30 characters. |
| assets.type | Yes | string enum | Asset type. Supported values: character, scene, tool. |
| assets.image_uri | Yes | string | Reference image for this asset. Supports public image URL or Base64 image data. |
| assets.description | No | string | Asset description, such as identity, appearance, age, role, scene details, or tool details. |
| image | No | string | Positioning reference image uploaded by the user. |
| placement | No | string enum | Placement mode: upload, panorama, or step. Default: upload. |
| quality | No | string enum | Quality level: standard or high. Default: high. |
| duration | Yes | integer enum | Fixed clip duration in seconds. Supported values: 8, 9, 10, 11, and 12. |
| resolution | No | string enum | Output resolution: 720p or 1080p. Default: 1080p. |
| aspect_ratio | No | string enum | Output aspect ratio: 9:16 or 16:9. Default: 9:16. |
| style | No | string | Video style, such as realistic, 3D modeling, or 2D animation. Limit: 30 characters; punctuation is not recommended. |
assets.image_uri supports image URL or Base64 image data.data:image/png;base64,{base64_encode}.Billing is based on effective video duration at $0.14 per second.
| Duration | Price |
|---|---|
| 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.
name for the task.content.01, 02, 03, and so on.image_uri for every asset.placement.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.
# 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].// 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# 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 outputQ3 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.
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.
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.
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.
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.
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.