Vidu Q2 Pro

Vidu Q2 Pro is a high fidelity video generation model for cinematic storytelling. It supports text prompts, image inputs, and multi reference control for long form scenes. It targets developers who need controllable motion, stable characters, and smooth camera work for complex shots.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples3
CODE
Ready-to-use code snippets for common workflows
first-frame
Flower Market Music Video Segment$0.179~1m 31simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'vidu:3@1',
positivePrompt: 'Continue naturally from the supplied opening frame as one uninterrupted vertical music-video shot. The singer steps off the center mark toward camera, lip-syncing with assured, restrained intensity while rolling one shoulder and tracing a sharp rhythmic gesture across her chest. On the next beat, the six market workers behind her pivot in alternating directions and sweep their bouquets upward in a precise wave, then push two tall flower racks past each other to create moving walls of cobalt, coral, and white blossoms. Loose cellophane sleeves flutter, leaves tremble, suspended mist drifts through the fluorescent light, and puddle reflections ripple beneath their boots. The camera dollies backward smoothly at the singer\'s walking pace, then makes a subtle clockwise arc around her while maintaining a low full-body portrait framing and keeping her face stable and sharply recognizable. She finishes close to the lens with a brief half-smile as the crossed racks open behind her to reveal the glowing fuchsia loading bay. Energetic electronic-cumbia visual rhythm, grounded professional choreography, humid predawn atmosphere, saturated cobalt, acid green, and fuchsia palette, cinematic contrast, realistic fabric and flower motion, natural motion blur, no cuts, no titles, no logos.',
width: 720,
height: 1280,
duration: 6,
providerSettings: {
vidu: {
movementAmplitude: 'large'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/5dfec48c-d04f-4b33-98a1-f92b3436af0b.jpg',
frame: 'first'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "vidu:3@1",
"positivePrompt": "Continue naturally from the supplied opening frame as one uninterrupted vertical music-video shot. The singer steps off the center mark toward camera, lip-syncing with assured, restrained intensity while rolling one shoulder and tracing a sharp rhythmic gesture across her chest. On the next beat, the six market workers behind her pivot in alternating directions and sweep their bouquets upward in a precise wave, then push two tall flower racks past each other to create moving walls of cobalt, coral, and white blossoms. Loose cellophane sleeves flutter, leaves tremble, suspended mist drifts through the fluorescent light, and puddle reflections ripple beneath their boots. The camera dollies backward smoothly at the singer's walking pace, then makes a subtle clockwise arc around her while maintaining a low full-body portrait framing and keeping her face stable and sharply recognizable. She finishes close to the lens with a brief half-smile as the crossed racks open behind her to reveal the glowing fuchsia loading bay. Energetic electronic-cumbia visual rhythm, grounded professional choreography, humid predawn atmosphere, saturated cobalt, acid green, and fuchsia palette, cinematic contrast, realistic fabric and flower motion, natural motion blur, no cuts, no titles, no logos.",
"width": 720,
"height": 1280,
"duration": 6,
"providerSettings": {
"vidu": {
"movementAmplitude": "large"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/5dfec48c-d04f-4b33-98a1-f92b3436af0b.jpg",
"frame": "first"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "c4c067f3-b8cf-4403-a85b-4d5c78c14035",
"model": "vidu:3@1",
"positivePrompt": "Continue naturally from the supplied opening frame as one uninterrupted vertical music-video shot. The singer steps off the center mark toward camera, lip-syncing with assured, restrained intensity while rolling one shoulder and tracing a sharp rhythmic gesture across her chest. On the next beat, the six market workers behind her pivot in alternating directions and sweep their bouquets upward in a precise wave, then push two tall flower racks past each other to create moving walls of cobalt, coral, and white blossoms. Loose cellophane sleeves flutter, leaves tremble, suspended mist drifts through the fluorescent light, and puddle reflections ripple beneath their boots. The camera dollies backward smoothly at the singer's walking pace, then makes a subtle clockwise arc around her while maintaining a low full-body portrait framing and keeping her face stable and sharply recognizable. She finishes close to the lens with a brief half-smile as the crossed racks open behind her to reveal the glowing fuchsia loading bay. Energetic electronic-cumbia visual rhythm, grounded professional choreography, humid predawn atmosphere, saturated cobalt, acid green, and fuchsia palette, cinematic contrast, realistic fabric and flower motion, natural motion blur, no cuts, no titles, no logos.",
"width": 720,
"height": 1280,
"duration": 6,
"providerSettings": {
"vidu": {
"movementAmplitude": "large"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/5dfec48c-d04f-4b33-98a1-f92b3436af0b.jpg",
"frame": "first"
}
]
}
}
]'runware run vidu:3@1 \
positivePrompt="Continue naturally from the supplied opening frame as one uninterrupted vertical music-video shot. The singer steps off the center mark toward camera, lip-syncing with assured, restrained intensity while rolling one shoulder and tracing a sharp rhythmic gesture across her chest. On the next beat, the six market workers behind her pivot in alternating directions and sweep their bouquets upward in a precise wave, then push two tall flower racks past each other to create moving walls of cobalt, coral, and white blossoms. Loose cellophane sleeves flutter, leaves tremble, suspended mist drifts through the fluorescent light, and puddle reflections ripple beneath their boots. The camera dollies backward smoothly at the singer's walking pace, then makes a subtle clockwise arc around her while maintaining a low full-body portrait framing and keeping her face stable and sharply recognizable. She finishes close to the lens with a brief half-smile as the crossed racks open behind her to reveal the glowing fuchsia loading bay. Energetic electronic-cumbia visual rhythm, grounded professional choreography, humid predawn atmosphere, saturated cobalt, acid green, and fuchsia palette, cinematic contrast, realistic fabric and flower motion, natural motion blur, no cuts, no titles, no logos." \
width=720 \
height=1280 \
duration=6 \
providerSettings.vidu.movementAmplitude=large \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/5dfec48c-d04f-4b33-98a1-f92b3436af0b.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "c4c067f3-b8cf-4403-a85b-4d5c78c14035",
"model": "vidu:3@1",
"positivePrompt": "Continue naturally from the supplied opening frame as one uninterrupted vertical music-video shot. The singer steps off the center mark toward camera, lip-syncing with assured, restrained intensity while rolling one shoulder and tracing a sharp rhythmic gesture across her chest. On the next beat, the six market workers behind her pivot in alternating directions and sweep their bouquets upward in a precise wave, then push two tall flower racks past each other to create moving walls of cobalt, coral, and white blossoms. Loose cellophane sleeves flutter, leaves tremble, suspended mist drifts through the fluorescent light, and puddle reflections ripple beneath their boots. The camera dollies backward smoothly at the singer's walking pace, then makes a subtle clockwise arc around her while maintaining a low full-body portrait framing and keeping her face stable and sharply recognizable. She finishes close to the lens with a brief half-smile as the crossed racks open behind her to reveal the glowing fuchsia loading bay. Energetic electronic-cumbia visual rhythm, grounded professional choreography, humid predawn atmosphere, saturated cobalt, acid green, and fuchsia palette, cinematic contrast, realistic fabric and flower motion, natural motion blur, no cuts, no titles, no logos.",
"width": 720,
"height": 1280,
"duration": 6,
"providerSettings": {
"vidu": {
"movementAmplitude": "large"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/5dfec48c-d04f-4b33-98a1-f92b3436af0b.jpg",
"frame": "first"
}
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "c4c067f3-b8cf-4403-a85b-4d5c78c14035",
"videoUUID": "0fee5a0c-2274-462b-ae13-c9a0e5a72cd0",
"videoURL": "https://vm.runware.ai/video/os/a09dlim3/ws/5/vi/0fee5a0c-2274-462b-ae13-c9a0e5a72cd0.mp4",
"seed": 1825691494,
"cost": 0.17875
}first-last-frame
Mine Safety Avatar Presenter Clip$0.234~3m 56simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'vidu:3@1',
positivePrompt: 'Create a finished eight-second talking-head segment for an underground mine safety training course, connecting the supplied first and last frames as one continuous locked-camera take. Preserve the presenter’s identity, hard hat, coveralls, gas detector, proportions, refuge-chamber background and lighting perfectly throughout. She looks directly into the lens and clearly delivers: “If the methane alarm flashes red, stop work, switch off equipment, and follow the blue refuge lights.” Animate natural, precise speech articulation with believable jaw, lips and cheeks, steady eye contact, subtle blinks and a slight serious nod. Her posture remains composed. Midway through the sentence, her right hand rises smoothly into frame; on “follow the blue refuge lights,” she makes one restrained open-palm gesture toward frame right, naturally arriving at the final pose. Keep all motion professional and understated, with realistic breathing, stable facial features, consistent fingers and no camera movement. Industrial charcoal, safety-yellow and cyan art direction; soft practical light, crisp skin detail, shallow but readable background depth. No captions, logos, interface graphics, cuts or scene changes.',
width: 1280,
height: 720,
duration: 8,
providerSettings: {
vidu: {
movementAmplitude: 'auto'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/6b490efb-6679-4f58-b052-395b1a17d5c8.jpg',
frame: 'first'
},
{
image: 'https://assets.runware.ai/assets/inputs/ae9cb765-d954-4a1a-b2af-aa1006d5bfd4.jpg',
frame: 'last'
}
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "vidu:3@1",
"positivePrompt": "Create a finished eight-second talking-head segment for an underground mine safety training course, connecting the supplied first and last frames as one continuous locked-camera take. Preserve the presenter’s identity, hard hat, coveralls, gas detector, proportions, refuge-chamber background and lighting perfectly throughout. She looks directly into the lens and clearly delivers: “If the methane alarm flashes red, stop work, switch off equipment, and follow the blue refuge lights.” Animate natural, precise speech articulation with believable jaw, lips and cheeks, steady eye contact, subtle blinks and a slight serious nod. Her posture remains composed. Midway through the sentence, her right hand rises smoothly into frame; on “follow the blue refuge lights,” she makes one restrained open-palm gesture toward frame right, naturally arriving at the final pose. Keep all motion professional and understated, with realistic breathing, stable facial features, consistent fingers and no camera movement. Industrial charcoal, safety-yellow and cyan art direction; soft practical light, crisp skin detail, shallow but readable background depth. No captions, logos, interface graphics, cuts or scene changes.",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"vidu": {
"movementAmplitude": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/6b490efb-6679-4f58-b052-395b1a17d5c8.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/ae9cb765-d954-4a1a-b2af-aa1006d5bfd4.jpg",
"frame": "last"
}
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "3a19cc53-912b-473d-af96-6162ccc4d0bd",
"model": "vidu:3@1",
"positivePrompt": "Create a finished eight-second talking-head segment for an underground mine safety training course, connecting the supplied first and last frames as one continuous locked-camera take. Preserve the presenter’s identity, hard hat, coveralls, gas detector, proportions, refuge-chamber background and lighting perfectly throughout. She looks directly into the lens and clearly delivers: “If the methane alarm flashes red, stop work, switch off equipment, and follow the blue refuge lights.” Animate natural, precise speech articulation with believable jaw, lips and cheeks, steady eye contact, subtle blinks and a slight serious nod. Her posture remains composed. Midway through the sentence, her right hand rises smoothly into frame; on “follow the blue refuge lights,” she makes one restrained open-palm gesture toward frame right, naturally arriving at the final pose. Keep all motion professional and understated, with realistic breathing, stable facial features, consistent fingers and no camera movement. Industrial charcoal, safety-yellow and cyan art direction; soft practical light, crisp skin detail, shallow but readable background depth. No captions, logos, interface graphics, cuts or scene changes.",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"vidu": {
"movementAmplitude": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/6b490efb-6679-4f58-b052-395b1a17d5c8.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/ae9cb765-d954-4a1a-b2af-aa1006d5bfd4.jpg",
"frame": "last"
}
]
}
}
]'runware run vidu:3@1 \
positivePrompt="Create a finished eight-second talking-head segment for an underground mine safety training course, connecting the supplied first and last frames as one continuous locked-camera take. Preserve the presenter’s identity, hard hat, coveralls, gas detector, proportions, refuge-chamber background and lighting perfectly throughout. She looks directly into the lens and clearly delivers: “If the methane alarm flashes red, stop work, switch off equipment, and follow the blue refuge lights.” Animate natural, precise speech articulation with believable jaw, lips and cheeks, steady eye contact, subtle blinks and a slight serious nod. Her posture remains composed. Midway through the sentence, her right hand rises smoothly into frame; on “follow the blue refuge lights,” she makes one restrained open-palm gesture toward frame right, naturally arriving at the final pose. Keep all motion professional and understated, with realistic breathing, stable facial features, consistent fingers and no camera movement. Industrial charcoal, safety-yellow and cyan art direction; soft practical light, crisp skin detail, shallow but readable background depth. No captions, logos, interface graphics, cuts or scene changes." \
width=1280 \
height=720 \
duration=8 \
providerSettings.vidu.movementAmplitude=auto \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/6b490efb-6679-4f58-b052-395b1a17d5c8.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/ae9cb765-d954-4a1a-b2af-aa1006d5bfd4.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "3a19cc53-912b-473d-af96-6162ccc4d0bd",
"model": "vidu:3@1",
"positivePrompt": "Create a finished eight-second talking-head segment for an underground mine safety training course, connecting the supplied first and last frames as one continuous locked-camera take. Preserve the presenter’s identity, hard hat, coveralls, gas detector, proportions, refuge-chamber background and lighting perfectly throughout. She looks directly into the lens and clearly delivers: “If the methane alarm flashes red, stop work, switch off equipment, and follow the blue refuge lights.” Animate natural, precise speech articulation with believable jaw, lips and cheeks, steady eye contact, subtle blinks and a slight serious nod. Her posture remains composed. Midway through the sentence, her right hand rises smoothly into frame; on “follow the blue refuge lights,” she makes one restrained open-palm gesture toward frame right, naturally arriving at the final pose. Keep all motion professional and understated, with realistic breathing, stable facial features, consistent fingers and no camera movement. Industrial charcoal, safety-yellow and cyan art direction; soft practical light, crisp skin detail, shallow but readable background depth. No captions, logos, interface graphics, cuts or scene changes.",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"vidu": {
"movementAmplitude": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/6b490efb-6679-4f58-b052-395b1a17d5c8.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/ae9cb765-d954-4a1a-b2af-aa1006d5bfd4.jpg",
"frame": "last"
}
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "3a19cc53-912b-473d-af96-6162ccc4d0bd",
"videoUUID": "b577acd3-6ed3-4ed1-9c4b-93e31371d34a",
"videoURL": "https://vm.runware.ai/video/os/a01d21/ws/5/vi/b577acd3-6ed3-4ed1-9c4b-93e31371d34a.mp4",
"seed": 665547737,
"cost": 0.23375
}reference-to-video
Coral Micropropagation Laboratory B-Roll$0.124~1m 0simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'vidu:3@1',
positivePrompt: 'Single continuous five-second editorial b-roll shot inside a modern coral micropropagation laboratory. In a tight square macro composition, preserve the recognizable apricot branching staghorn coral with pale cream tips from reference 1, the teal nitrile glove and slim stainless-steel forceps from reference 2, and the cyan aquarium glow, warm task light, brushed-steel bench, culture dishes, and softly blurred tanks from reference 3. A marine biologist gently lowers the living coral fragment into the shallow seawater of a clear circular culture dish, then releases it with one precise movement. The fragment remains stable and fully recognizable. Subtle ripples spread across the dish, tiny suspended particles drift, coral polyps sway almost imperceptibly, and cool tank highlights shimmer in the background. Slow controlled camera push-in with slight natural parallax; no cuts, no abrupt reframing. Shallow depth of field keeps the forceps tips and coral tissue crisp while the laboratory falls into soft bokeh. Premium documentary stock footage, scientifically credible sterile handling, photorealistic wet textures, restrained cyan, teal, apricot, and warm amber palette. Calm, meticulous, hopeful mood. No logos, labels, captions, watermarks, extra fingers, deformed tools, duplicate coral, splashing, or exaggerated motion.',
width: 960,
height: 960,
duration: 5,
providerSettings: {
vidu: {
movementAmplitude: 'small'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/48f85d76-5177-4f6d-92bb-c711d5ef4f02.jpg',
'https://assets.runware.ai/assets/inputs/d1d1c88a-7c4e-45df-8f70-6f6a9db3e95d.jpg',
'https://assets.runware.ai/assets/inputs/c618b1d7-84ed-4907-ad45-298292f3509c.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "vidu:3@1",
"positivePrompt": "Single continuous five-second editorial b-roll shot inside a modern coral micropropagation laboratory. In a tight square macro composition, preserve the recognizable apricot branching staghorn coral with pale cream tips from reference 1, the teal nitrile glove and slim stainless-steel forceps from reference 2, and the cyan aquarium glow, warm task light, brushed-steel bench, culture dishes, and softly blurred tanks from reference 3. A marine biologist gently lowers the living coral fragment into the shallow seawater of a clear circular culture dish, then releases it with one precise movement. The fragment remains stable and fully recognizable. Subtle ripples spread across the dish, tiny suspended particles drift, coral polyps sway almost imperceptibly, and cool tank highlights shimmer in the background. Slow controlled camera push-in with slight natural parallax; no cuts, no abrupt reframing. Shallow depth of field keeps the forceps tips and coral tissue crisp while the laboratory falls into soft bokeh. Premium documentary stock footage, scientifically credible sterile handling, photorealistic wet textures, restrained cyan, teal, apricot, and warm amber palette. Calm, meticulous, hopeful mood. No logos, labels, captions, watermarks, extra fingers, deformed tools, duplicate coral, splashing, or exaggerated motion.",
"width": 960,
"height": 960,
"duration": 5,
"providerSettings": {
"vidu": {
"movementAmplitude": "small"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/48f85d76-5177-4f6d-92bb-c711d5ef4f02.jpg",
"https://assets.runware.ai/assets/inputs/d1d1c88a-7c4e-45df-8f70-6f6a9db3e95d.jpg",
"https://assets.runware.ai/assets/inputs/c618b1d7-84ed-4907-ad45-298292f3509c.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "ddb52862-dc69-414f-b150-020b98a2a3dc",
"model": "vidu:3@1",
"positivePrompt": "Single continuous five-second editorial b-roll shot inside a modern coral micropropagation laboratory. In a tight square macro composition, preserve the recognizable apricot branching staghorn coral with pale cream tips from reference 1, the teal nitrile glove and slim stainless-steel forceps from reference 2, and the cyan aquarium glow, warm task light, brushed-steel bench, culture dishes, and softly blurred tanks from reference 3. A marine biologist gently lowers the living coral fragment into the shallow seawater of a clear circular culture dish, then releases it with one precise movement. The fragment remains stable and fully recognizable. Subtle ripples spread across the dish, tiny suspended particles drift, coral polyps sway almost imperceptibly, and cool tank highlights shimmer in the background. Slow controlled camera push-in with slight natural parallax; no cuts, no abrupt reframing. Shallow depth of field keeps the forceps tips and coral tissue crisp while the laboratory falls into soft bokeh. Premium documentary stock footage, scientifically credible sterile handling, photorealistic wet textures, restrained cyan, teal, apricot, and warm amber palette. Calm, meticulous, hopeful mood. No logos, labels, captions, watermarks, extra fingers, deformed tools, duplicate coral, splashing, or exaggerated motion.",
"width": 960,
"height": 960,
"duration": 5,
"providerSettings": {
"vidu": {
"movementAmplitude": "small"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/48f85d76-5177-4f6d-92bb-c711d5ef4f02.jpg",
"https://assets.runware.ai/assets/inputs/d1d1c88a-7c4e-45df-8f70-6f6a9db3e95d.jpg",
"https://assets.runware.ai/assets/inputs/c618b1d7-84ed-4907-ad45-298292f3509c.jpg"
]
}
}
]'runware run vidu:3@1 \
positivePrompt="Single continuous five-second editorial b-roll shot inside a modern coral micropropagation laboratory. In a tight square macro composition, preserve the recognizable apricot branching staghorn coral with pale cream tips from reference 1, the teal nitrile glove and slim stainless-steel forceps from reference 2, and the cyan aquarium glow, warm task light, brushed-steel bench, culture dishes, and softly blurred tanks from reference 3. A marine biologist gently lowers the living coral fragment into the shallow seawater of a clear circular culture dish, then releases it with one precise movement. The fragment remains stable and fully recognizable. Subtle ripples spread across the dish, tiny suspended particles drift, coral polyps sway almost imperceptibly, and cool tank highlights shimmer in the background. Slow controlled camera push-in with slight natural parallax; no cuts, no abrupt reframing. Shallow depth of field keeps the forceps tips and coral tissue crisp while the laboratory falls into soft bokeh. Premium documentary stock footage, scientifically credible sterile handling, photorealistic wet textures, restrained cyan, teal, apricot, and warm amber palette. Calm, meticulous, hopeful mood. No logos, labels, captions, watermarks, extra fingers, deformed tools, duplicate coral, splashing, or exaggerated motion." \
width=960 \
height=960 \
duration=5 \
providerSettings.vidu.movementAmplitude=small \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/48f85d76-5177-4f6d-92bb-c711d5ef4f02.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/d1d1c88a-7c4e-45df-8f70-6f6a9db3e95d.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/c618b1d7-84ed-4907-ad45-298292f3509c.jpg{
"taskType": "videoInference",
"taskUUID": "ddb52862-dc69-414f-b150-020b98a2a3dc",
"model": "vidu:3@1",
"positivePrompt": "Single continuous five-second editorial b-roll shot inside a modern coral micropropagation laboratory. In a tight square macro composition, preserve the recognizable apricot branching staghorn coral with pale cream tips from reference 1, the teal nitrile glove and slim stainless-steel forceps from reference 2, and the cyan aquarium glow, warm task light, brushed-steel bench, culture dishes, and softly blurred tanks from reference 3. A marine biologist gently lowers the living coral fragment into the shallow seawater of a clear circular culture dish, then releases it with one precise movement. The fragment remains stable and fully recognizable. Subtle ripples spread across the dish, tiny suspended particles drift, coral polyps sway almost imperceptibly, and cool tank highlights shimmer in the background. Slow controlled camera push-in with slight natural parallax; no cuts, no abrupt reframing. Shallow depth of field keeps the forceps tips and coral tissue crisp while the laboratory falls into soft bokeh. Premium documentary stock footage, scientifically credible sterile handling, photorealistic wet textures, restrained cyan, teal, apricot, and warm amber palette. Calm, meticulous, hopeful mood. No logos, labels, captions, watermarks, extra fingers, deformed tools, duplicate coral, splashing, or exaggerated motion.",
"width": 960,
"height": 960,
"duration": 5,
"providerSettings": {
"vidu": {
"movementAmplitude": "small"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/48f85d76-5177-4f6d-92bb-c711d5ef4f02.jpg",
"https://assets.runware.ai/assets/inputs/d1d1c88a-7c4e-45df-8f70-6f6a9db3e95d.jpg",
"https://assets.runware.ai/assets/inputs/c618b1d7-84ed-4907-ad45-298292f3509c.jpg"
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "ddb52862-dc69-414f-b150-020b98a2a3dc",
"videoUUID": "fc7c6b36-a119-4ad9-a902-5f07d8728ece",
"videoURL": "https://vm.runware.ai/video/os/a08dlim3/ws/5/vi/fc7c6b36-a119-4ad9-a902-5f07d8728ece.mp4",
"seed": 37999399,
"cost": 0.12375
}