Vidu Q3 Pro Text to Video is a fast AI video generation model that creates high-quality, audio-capable videos from text prompts with support for 1–16 second outputs. Ready-to-use REST inference API for cinematic clips, advertising creatives, social media videos, product visuals, storytelling, and professional text-to-video workflows with simple integration, no coldstarts, and affordable pricing.
Idle

$0.25per run·~40 / $10
Vidu Q3 Pro Text-to-Video is a fast, versatile text-to-video model that generates high-quality videos from natural-language prompts. It supports multiple resolutions, style presets, motion intensity control, and optional audio generation with background music, making it well suited for rapid creative iteration, content production, and concept visualization.
POST /ent/v2/text2video, model viduq3-pro)text2video, img2video, and start-end2video share the same 1–16s pricing tiers by resolution.Fast generation Pro architecture delivers quick results for rapid prototyping and iteration.
Text-driven video creation Turn scene descriptions into dynamic video clips with controllable motion and style.
Multiple resolutions
Choose from 540p, 720p, or 1080p to balance quality and cost.
Style presets Select a visual style preset to better match your creative direction.
Motion control
Adjust movement_amplitude to control the intensity of motion in the video.
Optional audio generation Generate synchronized audio and background music for more complete video output.
| Parameter | Required | Description |
|---|---|---|
| prompt | Yes | Text description of the desired video scene. |
| style | No | Visual style preset. Default: general. |
| resolution | No | Output resolution: 540p, 720p, or 1080p. Default: 720p. |
| duration | No | Video length in seconds. Supports 1–16 seconds for Q3 Pro. Default: 5. |
| movement_amplitude | No | Controls motion intensity. Default: auto. |
| generate_audio | No | Whether to generate synchronized audio. Default: enabled. |
| bgm | No | Whether to include background music. Default: enabled. |
| seed | No | Random seed for reproducible results. Use -1 for a random seed. |
540p for speed, 720p for balance, or 1080p for higher quality.movement_amplitude.generate_audio and bgm if you want sound in the output.A cinematic night drive through a neon-lit city, light rain reflecting on the road, smooth forward camera motion, moody atmosphere, realistic lighting, subtle environmental motion
Pricing is based on duration and resolution.
| Resolution | Cost per Second |
|---|---|
| 540p | $0.05 |
| 720p | $0.125 |
| 1080p | $0.15 |
| Resolution | 1s | 5s | 10s | 16s |
|---|---|---|---|---|
| 540p | $0.05 | $0.25 | $0.50 | $0.80 |
| 720p | $0.125 | $0.625 | $1.25 | $2.00 |
| 1080p | $0.15 | $0.75 | $1.50 | $2.40 |
duration540p costs $0.25 per 5 seconds720p costs 2.5× the 540p base rate1080p costs 3× the 540p base ratestyle, movement_amplitude, generate_audio, bgm, and seed do not affect pricing540p for rapid iteration, then switch to 720p or 1080p for final-quality output.seed when you want more consistent variations.bgm for atmospheric content, and disable it when you plan to add custom audio later.movement_amplitude for calmer scenes, and raise it for more energetic or dramatic motion.prompt is the only required field.duration supports 1–16 seconds for Q3 Pro.audio flag, while this WaveSpeed schema exposes generate_audio and bgm.seed = -1 means a random seed will be used.Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/vidu/q3-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 Q3 Pro Text To Video below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/vidu/q3-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",
"style": "general",
"resolution": "720p",
"duration": 5,
"movement_amplitude": "auto",
"generate_audio": true,
"bgm": true,
"seed": 0
}'
# 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-pro/text-to-video", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"style": "general",
"resolution": "720p",
"duration": 5,
"movement_amplitude": "auto",
"generate_audio": true,
"bgm": true,
"seed": 0
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"vidu/q3-pro/text-to-video",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"style": "general",
"resolution": "720p",
"duration": 5,
"movement_amplitude": "auto",
"generate_audio": true,
"bgm": true,
"seed": 0
}
)
print(output["outputs"][0]) # → URL of the generated outputQ3 Pro Text To Video is a Vidu model for video generation, exposed as a REST API on WaveSpeedAI. Vidu Q3 Pro Text to Video is a fast AI video generation model that creates high-quality, audio-capable videos from text prompts with support for 1–16 second outputs. Ready-to-use REST inference API for cinematic clips, advertising creatives, social media videos, product visuals, storytelling, and professional text-to-video workflows with simple integration, no coldstarts, and 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 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-pro-text-to-video.
Q3 Pro Text To Video starts at $0.25 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: `prompt`, `resolution`, `duration`, `seed`, `bgm`, `generate_audio`. 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-pro-text-to-video.
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.