Vidu Q3 Drama Clip generates 8-12 second script-driven drama videos from structured assets, including characters, scenes, and tools. It is ideal for compact story scenes, storyboard shots, and focused narrative moments. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$1.12per run
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. Start polling the result endpoint around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. On completed, read URLs from data.outputs. Examples for Q3 Drama Clip below.
# Submit the prediction
curl --fail-with-body --connect-timeout 10 --max-time 60 \
-X POST "https://api.wavespeed.ai/api/v3/vidu/q3/drama-clip" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"placement": "panorama",
"duration": 8,
"resolution": "1080p",
"aspect_ratio": "9:16"
}'
# Wait at least 2 seconds, then poll. Safe GET requests may be retried.
curl --fail-with-body --connect-timeout 10 --max-time 30 \
--retry 4 --retry-all-errors --retry-delay 1 \
-X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# Start at 2 seconds and increase the interval for long-running tasks.
# Stop on completed, failed, cancelled, or timeout.// npm install wavespeed
const { Client } = require('wavespeed');
const apiKey = process.env.WAVESPEED_API_KEY;
if (!apiKey) throw new Error('Set WAVESPEED_API_KEY');
const client = new Client(apiKey);
try {
const result = await client.run("vidu/q3/drama-clip", {
"placement": "panorama",
"duration": 8,
"resolution": "1080p",
"aspect_ratio": "9:16"
}, {
timeout: 3600,
pollInterval: 2.0,
});
console.log(result.outputs);
} catch (error) {
console.error('Generation failed:', error);
process.exitCode = 1;
}# pip install wavespeed
import os
from wavespeed import Client
client = Client(api_key=os.environ["WAVESPEED_API_KEY"])
try:
output = client.run(
"vidu/q3/drama-clip",
{
"placement": "panorama",
"duration": 8,
"resolution": "1080p",
"aspect_ratio": "9:16"
},
timeout=3600.0,
poll_interval=2.0,
)
print(output["outputs"])
except Exception as error:
raise SystemExit(f"Generation failed: {error}") from errorQ3 Drama Clip is a Vidu model for video generation from images, exposed as a REST API on WaveSpeedAI. Vidu Q3 Drama Clip generates 8-12 second script-driven drama videos from structured assets, including characters, scenes, and tools. It is ideal for compact story scenes, storyboard shots, and focused narrative moments. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing. 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 result endpoint starting around every 2 seconds, increase the interval for long-running tasks, and stop on any terminal status. The playground generates production-oriented Python, JavaScript, and cURL examples with timeouts, transient-error handling, and safe GET retries. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/vidu/vidu-q3-drama-clip.
Q3 Drama Clip starts at $1.12 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.