MODEL IDvidu:1@1
live

Vidu Q1

Vidu
by Vidu

Vidu Q1 is a generative video model that preserves visual fidelity from multiple reference images. It supports character, scene and prop control with smooth transitions and 1080p clips. Ideal for ads, story sequences and animation workflows that need tight visual continuity.

Vidu Q1
text-to-video

Volcanic Observatory Anime Series Teaser

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'Create a cinematic five-second vertical anime title teaser for THE NINTH TREMOR, a prestige disaster-mystery series set at a remote volcanic observatory in 1932. One continuous shot with urgent, readable motion. Begin in extreme close-up on a brass seismograph needle violently scratching a jagged line across cream paper; the table trembles and fine volcanic dust jumps into the air. The camera rapidly pulls backward and tilts up to reveal a determined young woman volcanologist in round spectacles, a charcoal field coat and rust-red scarf. Her eyes snap toward the crater, she grabs her weathered observation notebook and runs through open wooden doors onto the observatory balcony. The camera reverse-dollies ahead of her, then cranes upward as she reaches the railing and her scarf lashes dramatically in the ash-filled wind. Behind her, a vast black volcanic plume rises into a sulfur-yellow dawn, dwarfing the tiny mountain station. End with the moving ash darkening the frame as elegant ivory title lettering appears: “THE NINTH TREMOR”; no other text. Hand-drawn theatrical anime, expressive cel animation, meticulous period instruments, painterly gouache backgrounds, strong ink silhouettes, restrained palette of sulfur yellow, parchment ivory, iron black and muted cinnabar. Tense scholarly atmosphere, dramatic parallax, purposeful camera movement, crisp vertical composition, protagonist held in the central portrait-safe area, polished streaming-series teaser.',
  width: 1080,
  height: 1920,
  duration: 5,
  providerSettings: {
    vidu: {
      style: 'anime',
      movementAmplitude: 'medium'
    }
  }
})
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:1@1",
            "positivePrompt": "Create a cinematic five-second vertical anime title teaser for THE NINTH TREMOR, a prestige disaster-mystery series set at a remote volcanic observatory in 1932. One continuous shot with urgent, readable motion. Begin in extreme close-up on a brass seismograph needle violently scratching a jagged line across cream paper; the table trembles and fine volcanic dust jumps into the air. The camera rapidly pulls backward and tilts up to reveal a determined young woman volcanologist in round spectacles, a charcoal field coat and rust-red scarf. Her eyes snap toward the crater, she grabs her weathered observation notebook and runs through open wooden doors onto the observatory balcony. The camera reverse-dollies ahead of her, then cranes upward as she reaches the railing and her scarf lashes dramatically in the ash-filled wind. Behind her, a vast black volcanic plume rises into a sulfur-yellow dawn, dwarfing the tiny mountain station. End with the moving ash darkening the frame as elegant ivory title lettering appears: “THE NINTH TREMOR”; no other text. Hand-drawn theatrical anime, expressive cel animation, meticulous period instruments, painterly gouache backgrounds, strong ink silhouettes, restrained palette of sulfur yellow, parchment ivory, iron black and muted cinnabar. Tense scholarly atmosphere, dramatic parallax, purposeful camera movement, crisp vertical composition, protagonist held in the central portrait-safe area, polished streaming-series teaser.",
            "width": 1080,
            "height": 1920,
            "duration": 5,
            "providerSettings": {
                "vidu": {
                    "style": "anime",
                    "movementAmplitude": "medium"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "ad3234ee-cd9c-4ad6-9bd2-af8cba296496",
      "model": "vidu:1@1",
      "positivePrompt": "Create a cinematic five-second vertical anime title teaser for THE NINTH TREMOR, a prestige disaster-mystery series set at a remote volcanic observatory in 1932. One continuous shot with urgent, readable motion. Begin in extreme close-up on a brass seismograph needle violently scratching a jagged line across cream paper; the table trembles and fine volcanic dust jumps into the air. The camera rapidly pulls backward and tilts up to reveal a determined young woman volcanologist in round spectacles, a charcoal field coat and rust-red scarf. Her eyes snap toward the crater, she grabs her weathered observation notebook and runs through open wooden doors onto the observatory balcony. The camera reverse-dollies ahead of her, then cranes upward as she reaches the railing and her scarf lashes dramatically in the ash-filled wind. Behind her, a vast black volcanic plume rises into a sulfur-yellow dawn, dwarfing the tiny mountain station. End with the moving ash darkening the frame as elegant ivory title lettering appears: “THE NINTH TREMOR”; no other text. Hand-drawn theatrical anime, expressive cel animation, meticulous period instruments, painterly gouache backgrounds, strong ink silhouettes, restrained palette of sulfur yellow, parchment ivory, iron black and muted cinnabar. Tense scholarly atmosphere, dramatic parallax, purposeful camera movement, crisp vertical composition, protagonist held in the central portrait-safe area, polished streaming-series teaser.",
      "width": 1080,
      "height": 1920,
      "duration": 5,
      "providerSettings": {
        "vidu": {
          "style": "anime",
          "movementAmplitude": "medium"
        }
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="Create a cinematic five-second vertical anime title teaser for THE NINTH TREMOR, a prestige disaster-mystery series set at a remote volcanic observatory in 1932. One continuous shot with urgent, readable motion. Begin in extreme close-up on a brass seismograph needle violently scratching a jagged line across cream paper; the table trembles and fine volcanic dust jumps into the air. The camera rapidly pulls backward and tilts up to reveal a determined young woman volcanologist in round spectacles, a charcoal field coat and rust-red scarf. Her eyes snap toward the crater, she grabs her weathered observation notebook and runs through open wooden doors onto the observatory balcony. The camera reverse-dollies ahead of her, then cranes upward as she reaches the railing and her scarf lashes dramatically in the ash-filled wind. Behind her, a vast black volcanic plume rises into a sulfur-yellow dawn, dwarfing the tiny mountain station. End with the moving ash darkening the frame as elegant ivory title lettering appears: “THE NINTH TREMOR”; no other text. Hand-drawn theatrical anime, expressive cel animation, meticulous period instruments, painterly gouache backgrounds, strong ink silhouettes, restrained palette of sulfur yellow, parchment ivory, iron black and muted cinnabar. Tense scholarly atmosphere, dramatic parallax, purposeful camera movement, crisp vertical composition, protagonist held in the central portrait-safe area, polished streaming-series teaser." \
  width=1080 \
  height=1920 \
  duration=5 \
  providerSettings.vidu.style=anime \
  providerSettings.vidu.movementAmplitude=medium
{
  "taskType": "videoInference",
  "taskUUID": "ad3234ee-cd9c-4ad6-9bd2-af8cba296496",
  "model": "vidu:1@1",
  "positivePrompt": "Create a cinematic five-second vertical anime title teaser for THE NINTH TREMOR, a prestige disaster-mystery series set at a remote volcanic observatory in 1932. One continuous shot with urgent, readable motion. Begin in extreme close-up on a brass seismograph needle violently scratching a jagged line across cream paper; the table trembles and fine volcanic dust jumps into the air. The camera rapidly pulls backward and tilts up to reveal a determined young woman volcanologist in round spectacles, a charcoal field coat and rust-red scarf. Her eyes snap toward the crater, she grabs her weathered observation notebook and runs through open wooden doors onto the observatory balcony. The camera reverse-dollies ahead of her, then cranes upward as she reaches the railing and her scarf lashes dramatically in the ash-filled wind. Behind her, a vast black volcanic plume rises into a sulfur-yellow dawn, dwarfing the tiny mountain station. End with the moving ash darkening the frame as elegant ivory title lettering appears: “THE NINTH TREMOR”; no other text. Hand-drawn theatrical anime, expressive cel animation, meticulous period instruments, painterly gouache backgrounds, strong ink silhouettes, restrained palette of sulfur yellow, parchment ivory, iron black and muted cinnabar. Tense scholarly atmosphere, dramatic parallax, purposeful camera movement, crisp vertical composition, protagonist held in the central portrait-safe area, polished streaming-series teaser.",
  "width": 1080,
  "height": 1920,
  "duration": 5,
  "providerSettings": {
    "vidu": {
      "style": "anime",
      "movementAmplitude": "medium"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "ad3234ee-cd9c-4ad6-9bd2-af8cba296496",
  "videoUUID": "4843bbb0-3109-49b9-a8f9-617c0a20d264",
  "videoURL": "https://vm.runware.ai/video/os/a06dlim3/ws/5/vi/4843bbb0-3109-49b9-a8f9-617c0a20d264.mp4",
  "seed": 1359588681,
  "cost": 0.22
}
text-to-video

Apiary Workwear Fashion Reel

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'A polished 5-second vertical anime fashion reel showcasing premium beekeeping workwear on a minimalist rooftop apiary at sunrise. The model wears an ivory waxed-canvas jacket with a sculptural amber mesh veil, ochre utility trousers, matte black leather gauntlets, reinforced boots and small bronze fasteners. Begin with a low close-up of the boots stepping onto a pale timber platform beside geometric white hives. In one fluid shot, the camera pushes forward and cranes upward in a graceful 120-degree orbit as the model pulls the veil into place, rolls one shoulder and pivots confidently. Fabric folds, mesh and straps respond naturally to the movement; a few bees drift safely through warm backlight. Finish on a strong full-body hero pose with the complete silhouette clearly visible. Refined hand-drawn anime aesthetic, crisp expressive linework, sophisticated cel shading, warm honey gold, cream, charcoal and muted ochre palette, purposeful editorial composition, premium fashion-film lighting, coherent anatomy, consistent garment details, no text, no logos.',
  width: 1080,
  height: 1920,
  duration: 5,
  providerSettings: {
    vidu: {
      style: 'anime',
      movementAmplitude: 'medium'
    }
  }
})
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:1@1",
            "positivePrompt": "A polished 5-second vertical anime fashion reel showcasing premium beekeeping workwear on a minimalist rooftop apiary at sunrise. The model wears an ivory waxed-canvas jacket with a sculptural amber mesh veil, ochre utility trousers, matte black leather gauntlets, reinforced boots and small bronze fasteners. Begin with a low close-up of the boots stepping onto a pale timber platform beside geometric white hives. In one fluid shot, the camera pushes forward and cranes upward in a graceful 120-degree orbit as the model pulls the veil into place, rolls one shoulder and pivots confidently. Fabric folds, mesh and straps respond naturally to the movement; a few bees drift safely through warm backlight. Finish on a strong full-body hero pose with the complete silhouette clearly visible. Refined hand-drawn anime aesthetic, crisp expressive linework, sophisticated cel shading, warm honey gold, cream, charcoal and muted ochre palette, purposeful editorial composition, premium fashion-film lighting, coherent anatomy, consistent garment details, no text, no logos.",
            "width": 1080,
            "height": 1920,
            "duration": 5,
            "providerSettings": {
                "vidu": {
                    "style": "anime",
                    "movementAmplitude": "medium"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "f37439f6-5afd-4c8c-a2cd-befb21f9076c",
      "model": "vidu:1@1",
      "positivePrompt": "A polished 5-second vertical anime fashion reel showcasing premium beekeeping workwear on a minimalist rooftop apiary at sunrise. The model wears an ivory waxed-canvas jacket with a sculptural amber mesh veil, ochre utility trousers, matte black leather gauntlets, reinforced boots and small bronze fasteners. Begin with a low close-up of the boots stepping onto a pale timber platform beside geometric white hives. In one fluid shot, the camera pushes forward and cranes upward in a graceful 120-degree orbit as the model pulls the veil into place, rolls one shoulder and pivots confidently. Fabric folds, mesh and straps respond naturally to the movement; a few bees drift safely through warm backlight. Finish on a strong full-body hero pose with the complete silhouette clearly visible. Refined hand-drawn anime aesthetic, crisp expressive linework, sophisticated cel shading, warm honey gold, cream, charcoal and muted ochre palette, purposeful editorial composition, premium fashion-film lighting, coherent anatomy, consistent garment details, no text, no logos.",
      "width": 1080,
      "height": 1920,
      "duration": 5,
      "providerSettings": {
        "vidu": {
          "style": "anime",
          "movementAmplitude": "medium"
        }
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="A polished 5-second vertical anime fashion reel showcasing premium beekeeping workwear on a minimalist rooftop apiary at sunrise. The model wears an ivory waxed-canvas jacket with a sculptural amber mesh veil, ochre utility trousers, matte black leather gauntlets, reinforced boots and small bronze fasteners. Begin with a low close-up of the boots stepping onto a pale timber platform beside geometric white hives. In one fluid shot, the camera pushes forward and cranes upward in a graceful 120-degree orbit as the model pulls the veil into place, rolls one shoulder and pivots confidently. Fabric folds, mesh and straps respond naturally to the movement; a few bees drift safely through warm backlight. Finish on a strong full-body hero pose with the complete silhouette clearly visible. Refined hand-drawn anime aesthetic, crisp expressive linework, sophisticated cel shading, warm honey gold, cream, charcoal and muted ochre palette, purposeful editorial composition, premium fashion-film lighting, coherent anatomy, consistent garment details, no text, no logos." \
  width=1080 \
  height=1920 \
  duration=5 \
  providerSettings.vidu.style=anime \
  providerSettings.vidu.movementAmplitude=medium
{
  "taskType": "videoInference",
  "taskUUID": "f37439f6-5afd-4c8c-a2cd-befb21f9076c",
  "model": "vidu:1@1",
  "positivePrompt": "A polished 5-second vertical anime fashion reel showcasing premium beekeeping workwear on a minimalist rooftop apiary at sunrise. The model wears an ivory waxed-canvas jacket with a sculptural amber mesh veil, ochre utility trousers, matte black leather gauntlets, reinforced boots and small bronze fasteners. Begin with a low close-up of the boots stepping onto a pale timber platform beside geometric white hives. In one fluid shot, the camera pushes forward and cranes upward in a graceful 120-degree orbit as the model pulls the veil into place, rolls one shoulder and pivots confidently. Fabric folds, mesh and straps respond naturally to the movement; a few bees drift safely through warm backlight. Finish on a strong full-body hero pose with the complete silhouette clearly visible. Refined hand-drawn anime aesthetic, crisp expressive linework, sophisticated cel shading, warm honey gold, cream, charcoal and muted ochre palette, purposeful editorial composition, premium fashion-film lighting, coherent anatomy, consistent garment details, no text, no logos.",
  "width": 1080,
  "height": 1920,
  "duration": 5,
  "providerSettings": {
    "vidu": {
      "style": "anime",
      "movementAmplitude": "medium"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "f37439f6-5afd-4c8c-a2cd-befb21f9076c",
  "videoUUID": "96245859-b411-45bd-b6dd-e4b9a21f88a7",
  "videoURL": "https://vm.runware.ai/video/os/a09dlim3/ws/5/vi/96245859-b411-45bd-b6dd-e4b9a21f88a7.mp4",
  "seed": 161999256,
  "cost": 0.22
}
Text to Video

Flooded Subway Breakdance Duel

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'A high-energy anime sequence inside an abandoned subway platform partially covered by shallow reflective water, two rival breakdance crews facing off in a circle of flickering vending machines and glitching route displays, the lead dancer in a chrome silver jacket launches into intricate spins and handstands while the opposing dancer answers with acrobatic footwork, spectators clap and stomp in rhythm, splashes ripple across the floor, dramatic tracking camera, fast but readable action choreography, expressive faces, bold color contrast, electric cyan and magenta highlights, detailed environment, polished animation, cinematic depth, seamless motion transitions',
  width: 1920,
  height: 1080,
  duration: 5,
  seed: 38389,
  providerSettings: {
    vidu: {
      movementAmplitude: 'large',
      style: 'anime'
    }
  }
})
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:1@1",
            "positivePrompt": "A high-energy anime sequence inside an abandoned subway platform partially covered by shallow reflective water, two rival breakdance crews facing off in a circle of flickering vending machines and glitching route displays, the lead dancer in a chrome silver jacket launches into intricate spins and handstands while the opposing dancer answers with acrobatic footwork, spectators clap and stomp in rhythm, splashes ripple across the floor, dramatic tracking camera, fast but readable action choreography, expressive faces, bold color contrast, electric cyan and magenta highlights, detailed environment, polished animation, cinematic depth, seamless motion transitions",
            "width": 1920,
            "height": 1080,
            "duration": 5,
            "seed": 38389,
            "providerSettings": {
                "vidu": {
                    "movementAmplitude": "large",
                    "style": "anime"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "87683d30-3940-4175-8d2e-faec341643a5",
      "model": "vidu:1@1",
      "positivePrompt": "A high-energy anime sequence inside an abandoned subway platform partially covered by shallow reflective water, two rival breakdance crews facing off in a circle of flickering vending machines and glitching route displays, the lead dancer in a chrome silver jacket launches into intricate spins and handstands while the opposing dancer answers with acrobatic footwork, spectators clap and stomp in rhythm, splashes ripple across the floor, dramatic tracking camera, fast but readable action choreography, expressive faces, bold color contrast, electric cyan and magenta highlights, detailed environment, polished animation, cinematic depth, seamless motion transitions",
      "width": 1920,
      "height": 1080,
      "duration": 5,
      "seed": 38389,
      "providerSettings": {
        "vidu": {
          "movementAmplitude": "large",
          "style": "anime"
        }
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="A high-energy anime sequence inside an abandoned subway platform partially covered by shallow reflective water, two rival breakdance crews facing off in a circle of flickering vending machines and glitching route displays, the lead dancer in a chrome silver jacket launches into intricate spins and handstands while the opposing dancer answers with acrobatic footwork, spectators clap and stomp in rhythm, splashes ripple across the floor, dramatic tracking camera, fast but readable action choreography, expressive faces, bold color contrast, electric cyan and magenta highlights, detailed environment, polished animation, cinematic depth, seamless motion transitions" \
  width=1920 \
  height=1080 \
  duration=5 \
  seed=38389 \
  providerSettings.vidu.movementAmplitude=large \
  providerSettings.vidu.style=anime
{
  "taskType": "videoInference",
  "taskUUID": "87683d30-3940-4175-8d2e-faec341643a5",
  "model": "vidu:1@1",
  "positivePrompt": "A high-energy anime sequence inside an abandoned subway platform partially covered by shallow reflective water, two rival breakdance crews facing off in a circle of flickering vending machines and glitching route displays, the lead dancer in a chrome silver jacket launches into intricate spins and handstands while the opposing dancer answers with acrobatic footwork, spectators clap and stomp in rhythm, splashes ripple across the floor, dramatic tracking camera, fast but readable action choreography, expressive faces, bold color contrast, electric cyan and magenta highlights, detailed environment, polished animation, cinematic depth, seamless motion transitions",
  "width": 1920,
  "height": 1080,
  "duration": 5,
  "seed": 38389,
  "providerSettings": {
    "vidu": {
      "movementAmplitude": "large",
      "style": "anime"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "87683d30-3940-4175-8d2e-faec341643a5",
  "videoUUID": "1f1c4795-c010-4814-b656-68b0b9df206e",
  "videoURL": "https://vm.runware.ai/video/os/a07d11/ws/5/vi/1f1c4795-c010-4814-b656-68b0b9df206e.mp4",
  "seed": 38389,
  "cost": 0.22
}
Text to Video

Neon Koi Alley Chase

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'Anime action sequence in a narrow futuristic alley lined with glowing koi hologram signs, puddles reflecting pink and cyan light, hanging cables, steam vents, vending machines, and layered shop facades. A teenage courier in a mustard bomber jacket sprints through the alley carrying a small sealed parcel while two compact drone pursuers weave overhead. The camera starts low near the wet pavement, then tracks forward beside the runner, pushing through drifting steam and flashing reflections. Midway, the courier vaults over stacked crates, slides under a half-open security shutter, and turns into a brighter side passage filled with animated fish-shaped signage. Dynamic cel-shaded lighting, crisp anime linework, expressive motion, vivid color contrast, high detail, coherent character design, smooth transitions, cinematic energy.',
  width: 1920,
  height: 1080,
  duration: 5,
  seed: 31299,
  providerSettings: {
    vidu: {
      movementAmplitude: 'large',
      style: 'anime'
    }
  }
})
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:1@1",
            "positivePrompt": "Anime action sequence in a narrow futuristic alley lined with glowing koi hologram signs, puddles reflecting pink and cyan light, hanging cables, steam vents, vending machines, and layered shop facades. A teenage courier in a mustard bomber jacket sprints through the alley carrying a small sealed parcel while two compact drone pursuers weave overhead. The camera starts low near the wet pavement, then tracks forward beside the runner, pushing through drifting steam and flashing reflections. Midway, the courier vaults over stacked crates, slides under a half-open security shutter, and turns into a brighter side passage filled with animated fish-shaped signage. Dynamic cel-shaded lighting, crisp anime linework, expressive motion, vivid color contrast, high detail, coherent character design, smooth transitions, cinematic energy.",
            "width": 1920,
            "height": 1080,
            "duration": 5,
            "seed": 31299,
            "providerSettings": {
                "vidu": {
                    "movementAmplitude": "large",
                    "style": "anime"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "45ab1f17-11be-461f-9262-e563317a3cba",
      "model": "vidu:1@1",
      "positivePrompt": "Anime action sequence in a narrow futuristic alley lined with glowing koi hologram signs, puddles reflecting pink and cyan light, hanging cables, steam vents, vending machines, and layered shop facades. A teenage courier in a mustard bomber jacket sprints through the alley carrying a small sealed parcel while two compact drone pursuers weave overhead. The camera starts low near the wet pavement, then tracks forward beside the runner, pushing through drifting steam and flashing reflections. Midway, the courier vaults over stacked crates, slides under a half-open security shutter, and turns into a brighter side passage filled with animated fish-shaped signage. Dynamic cel-shaded lighting, crisp anime linework, expressive motion, vivid color contrast, high detail, coherent character design, smooth transitions, cinematic energy.",
      "width": 1920,
      "height": 1080,
      "duration": 5,
      "seed": 31299,
      "providerSettings": {
        "vidu": {
          "movementAmplitude": "large",
          "style": "anime"
        }
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="Anime action sequence in a narrow futuristic alley lined with glowing koi hologram signs, puddles reflecting pink and cyan light, hanging cables, steam vents, vending machines, and layered shop facades. A teenage courier in a mustard bomber jacket sprints through the alley carrying a small sealed parcel while two compact drone pursuers weave overhead. The camera starts low near the wet pavement, then tracks forward beside the runner, pushing through drifting steam and flashing reflections. Midway, the courier vaults over stacked crates, slides under a half-open security shutter, and turns into a brighter side passage filled with animated fish-shaped signage. Dynamic cel-shaded lighting, crisp anime linework, expressive motion, vivid color contrast, high detail, coherent character design, smooth transitions, cinematic energy." \
  width=1920 \
  height=1080 \
  duration=5 \
  seed=31299 \
  providerSettings.vidu.movementAmplitude=large \
  providerSettings.vidu.style=anime
{
  "taskType": "videoInference",
  "taskUUID": "45ab1f17-11be-461f-9262-e563317a3cba",
  "model": "vidu:1@1",
  "positivePrompt": "Anime action sequence in a narrow futuristic alley lined with glowing koi hologram signs, puddles reflecting pink and cyan light, hanging cables, steam vents, vending machines, and layered shop facades. A teenage courier in a mustard bomber jacket sprints through the alley carrying a small sealed parcel while two compact drone pursuers weave overhead. The camera starts low near the wet pavement, then tracks forward beside the runner, pushing through drifting steam and flashing reflections. Midway, the courier vaults over stacked crates, slides under a half-open security shutter, and turns into a brighter side passage filled with animated fish-shaped signage. Dynamic cel-shaded lighting, crisp anime linework, expressive motion, vivid color contrast, high detail, coherent character design, smooth transitions, cinematic energy.",
  "width": 1920,
  "height": 1080,
  "duration": 5,
  "seed": 31299,
  "providerSettings": {
    "vidu": {
      "movementAmplitude": "large",
      "style": "anime"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "45ab1f17-11be-461f-9262-e563317a3cba",
  "videoUUID": "3bed2051-a0e6-44a2-bc2d-8cff33f6bb5a",
  "videoURL": "https://vm.runware.ai/video/os/a21d05/ws/5/vi/3bed2051-a0e6-44a2-bc2d-8cff33f6bb5a.mp4",
  "seed": 31299,
  "cost": 0.22
}
Image to Video

Submerged Cathedral Transit Hall

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'Animate from the provided first frame into a cinematic underwater journey through a vast submerged cathedral transit hall. The lone courier remains the visual anchor while tiny fish drift past, ropes and loose fabric sway gently in the current, dust-like silt rises from the platform, and shimmering caustic light ripples across the stone arches and old station fixtures. The camera performs a slow, elegant forward push with subtle parallax, preserving the exact architecture, character design, props, and moody aquatic atmosphere from the reference image. Realistic motion, strong depth, polished cinematic detail.',
  width: 1920,
  height: 1080,
  duration: 5,
  seed: 72215,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/dc172529-e449-4544-88c1-6763d3072f5a.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:1@1",
            "positivePrompt": "Animate from the provided first frame into a cinematic underwater journey through a vast submerged cathedral transit hall. The lone courier remains the visual anchor while tiny fish drift past, ropes and loose fabric sway gently in the current, dust-like silt rises from the platform, and shimmering caustic light ripples across the stone arches and old station fixtures. The camera performs a slow, elegant forward push with subtle parallax, preserving the exact architecture, character design, props, and moody aquatic atmosphere from the reference image. Realistic motion, strong depth, polished cinematic detail.",
            "width": 1920,
            "height": 1080,
            "duration": 5,
            "seed": 72215,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/dc172529-e449-4544-88c1-6763d3072f5a.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": "a6d980f1-42ec-42db-84be-f118d3468f03",
      "model": "vidu:1@1",
      "positivePrompt": "Animate from the provided first frame into a cinematic underwater journey through a vast submerged cathedral transit hall. The lone courier remains the visual anchor while tiny fish drift past, ropes and loose fabric sway gently in the current, dust-like silt rises from the platform, and shimmering caustic light ripples across the stone arches and old station fixtures. The camera performs a slow, elegant forward push with subtle parallax, preserving the exact architecture, character design, props, and moody aquatic atmosphere from the reference image. Realistic motion, strong depth, polished cinematic detail.",
      "width": 1920,
      "height": 1080,
      "duration": 5,
      "seed": 72215,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/dc172529-e449-4544-88c1-6763d3072f5a.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="Animate from the provided first frame into a cinematic underwater journey through a vast submerged cathedral transit hall. The lone courier remains the visual anchor while tiny fish drift past, ropes and loose fabric sway gently in the current, dust-like silt rises from the platform, and shimmering caustic light ripples across the stone arches and old station fixtures. The camera performs a slow, elegant forward push with subtle parallax, preserving the exact architecture, character design, props, and moody aquatic atmosphere from the reference image. Realistic motion, strong depth, polished cinematic detail." \
  width=1920 \
  height=1080 \
  duration=5 \
  seed=72215 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/dc172529-e449-4544-88c1-6763d3072f5a.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "a6d980f1-42ec-42db-84be-f118d3468f03",
  "model": "vidu:1@1",
  "positivePrompt": "Animate from the provided first frame into a cinematic underwater journey through a vast submerged cathedral transit hall. The lone courier remains the visual anchor while tiny fish drift past, ropes and loose fabric sway gently in the current, dust-like silt rises from the platform, and shimmering caustic light ripples across the stone arches and old station fixtures. The camera performs a slow, elegant forward push with subtle parallax, preserving the exact architecture, character design, props, and moody aquatic atmosphere from the reference image. Realistic motion, strong depth, polished cinematic detail.",
  "width": 1920,
  "height": 1080,
  "duration": 5,
  "seed": 72215,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/dc172529-e449-4544-88c1-6763d3072f5a.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "a6d980f1-42ec-42db-84be-f118d3468f03",
  "videoUUID": "537f5519-6377-4aa1-96c3-9856d811838e",
  "videoURL": "https://vm.runware.ai/video/os/a21d05/ws/5/vi/537f5519-6377-4aa1-96c3-9856d811838e.mp4",
  "seed": 72215,
  "cost": 0.22
}
Image to Video

Art Deco Arcade Metamorphosis

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'A smooth cinematic transformation between two matching reference frames inside a grand Art Deco amusement arcade. Start with a still, elegant hall of brass game cabinets and geometric marble patterns, then gradually animate the environment as indicator lights flicker on, ticket rolls unravel through the air, mirrored panels rotate, machine parts blossom into decorative floral mechanisms, and the central stage opens into a luminous spiral centerpiece. The camera makes a gentle forward glide with strong visual continuity, preserving architecture and object placement from the reference images. Rich metallic reflections, intricate period details, whimsical spectacle, polished high-end advertisement feel.',
  width: 1920,
  height: 1080,
  duration: 5,
  seed: 35998,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/134fbe45-eb85-4849-89d9-3f31331c7df1.jpg',
        frame: 'first'
      },
      {
        image: 'https://assets.runware.ai/assets/inputs/bfbf7a77-b78b-46bd-bbc9-0ab99e9baef8.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:1@1",
            "positivePrompt": "A smooth cinematic transformation between two matching reference frames inside a grand Art Deco amusement arcade. Start with a still, elegant hall of brass game cabinets and geometric marble patterns, then gradually animate the environment as indicator lights flicker on, ticket rolls unravel through the air, mirrored panels rotate, machine parts blossom into decorative floral mechanisms, and the central stage opens into a luminous spiral centerpiece. The camera makes a gentle forward glide with strong visual continuity, preserving architecture and object placement from the reference images. Rich metallic reflections, intricate period details, whimsical spectacle, polished high-end advertisement feel.",
            "width": 1920,
            "height": 1080,
            "duration": 5,
            "seed": 35998,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/134fbe45-eb85-4849-89d9-3f31331c7df1.jpg",
                        "frame": "first"
                    },
                    {
                        "image": "https://assets.runware.ai/assets/inputs/bfbf7a77-b78b-46bd-bbc9-0ab99e9baef8.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": "26931505-76d7-467c-9847-a0715dfc2a82",
      "model": "vidu:1@1",
      "positivePrompt": "A smooth cinematic transformation between two matching reference frames inside a grand Art Deco amusement arcade. Start with a still, elegant hall of brass game cabinets and geometric marble patterns, then gradually animate the environment as indicator lights flicker on, ticket rolls unravel through the air, mirrored panels rotate, machine parts blossom into decorative floral mechanisms, and the central stage opens into a luminous spiral centerpiece. The camera makes a gentle forward glide with strong visual continuity, preserving architecture and object placement from the reference images. Rich metallic reflections, intricate period details, whimsical spectacle, polished high-end advertisement feel.",
      "width": 1920,
      "height": 1080,
      "duration": 5,
      "seed": 35998,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/134fbe45-eb85-4849-89d9-3f31331c7df1.jpg",
            "frame": "first"
          },
          {
            "image": "https://assets.runware.ai/assets/inputs/bfbf7a77-b78b-46bd-bbc9-0ab99e9baef8.jpg",
            "frame": "last"
          }
        ]
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="A smooth cinematic transformation between two matching reference frames inside a grand Art Deco amusement arcade. Start with a still, elegant hall of brass game cabinets and geometric marble patterns, then gradually animate the environment as indicator lights flicker on, ticket rolls unravel through the air, mirrored panels rotate, machine parts blossom into decorative floral mechanisms, and the central stage opens into a luminous spiral centerpiece. The camera makes a gentle forward glide with strong visual continuity, preserving architecture and object placement from the reference images. Rich metallic reflections, intricate period details, whimsical spectacle, polished high-end advertisement feel." \
  width=1920 \
  height=1080 \
  duration=5 \
  seed=35998 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/134fbe45-eb85-4849-89d9-3f31331c7df1.jpg \
  inputs.frameImages.0.frame=first \
  inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/bfbf7a77-b78b-46bd-bbc9-0ab99e9baef8.jpg \
  inputs.frameImages.1.frame=last
{
  "taskType": "videoInference",
  "taskUUID": "26931505-76d7-467c-9847-a0715dfc2a82",
  "model": "vidu:1@1",
  "positivePrompt": "A smooth cinematic transformation between two matching reference frames inside a grand Art Deco amusement arcade. Start with a still, elegant hall of brass game cabinets and geometric marble patterns, then gradually animate the environment as indicator lights flicker on, ticket rolls unravel through the air, mirrored panels rotate, machine parts blossom into decorative floral mechanisms, and the central stage opens into a luminous spiral centerpiece. The camera makes a gentle forward glide with strong visual continuity, preserving architecture and object placement from the reference images. Rich metallic reflections, intricate period details, whimsical spectacle, polished high-end advertisement feel.",
  "width": 1920,
  "height": 1080,
  "duration": 5,
  "seed": 35998,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/134fbe45-eb85-4849-89d9-3f31331c7df1.jpg",
        "frame": "first"
      },
      {
        "image": "https://assets.runware.ai/assets/inputs/bfbf7a77-b78b-46bd-bbc9-0ab99e9baef8.jpg",
        "frame": "last"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "26931505-76d7-467c-9847-a0715dfc2a82",
  "videoUUID": "007ccf39-1301-4dbb-8ad9-ab23bd80663b",
  "videoURL": "https://vm.runware.ai/video/os/a02d21/ws/5/vi/007ccf39-1301-4dbb-8ad9-ab23bd80663b.mp4",
  "seed": 35998,
  "cost": 0.22
}
Text to Video

Orbital Greenhouse Evacuation Corridor

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'vidu:1@1',
  positivePrompt: 'Inside a damaged orbital greenhouse corridor, cracked glass panels reveal a sweeping view of Saturn\'s rings beyond. Vines drift in low gravity, loose seed packets tumble through the air, and emergency guidance strips pulse amber along the floor. A young maintenance engineer in a white exosuit pushes off a wall and glides forward, catching a floating tablet, then turning toward a sealed hatch as tiny droplets and leaves spin around her. The camera begins with a wide tracking shot down the curved corridor, then eases into a close side follow as she moves through shafts of harsh sunlight and rotating warning shadows. Highly detailed cinematic sci-fi, realistic materials, subtle lens bloom, dramatic contrast, smooth motion, coherent character design, polished commercial-quality visuals.',
  width: 1920,
  height: 1080,
  duration: 5,
  seed: 91569,
  providerSettings: {
    vidu: {
      movementAmplitude: 'medium',
      style: 'general'
    }
  }
})
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:1@1",
            "positivePrompt": "Inside a damaged orbital greenhouse corridor, cracked glass panels reveal a sweeping view of Saturn's rings beyond. Vines drift in low gravity, loose seed packets tumble through the air, and emergency guidance strips pulse amber along the floor. A young maintenance engineer in a white exosuit pushes off a wall and glides forward, catching a floating tablet, then turning toward a sealed hatch as tiny droplets and leaves spin around her. The camera begins with a wide tracking shot down the curved corridor, then eases into a close side follow as she moves through shafts of harsh sunlight and rotating warning shadows. Highly detailed cinematic sci-fi, realistic materials, subtle lens bloom, dramatic contrast, smooth motion, coherent character design, polished commercial-quality visuals.",
            "width": 1920,
            "height": 1080,
            "duration": 5,
            "seed": 91569,
            "providerSettings": {
                "vidu": {
                    "movementAmplitude": "medium",
                    "style": "general"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "f3b64352-98e2-48a6-a7fe-7d77a2e75040",
      "model": "vidu:1@1",
      "positivePrompt": "Inside a damaged orbital greenhouse corridor, cracked glass panels reveal a sweeping view of Saturn's rings beyond. Vines drift in low gravity, loose seed packets tumble through the air, and emergency guidance strips pulse amber along the floor. A young maintenance engineer in a white exosuit pushes off a wall and glides forward, catching a floating tablet, then turning toward a sealed hatch as tiny droplets and leaves spin around her. The camera begins with a wide tracking shot down the curved corridor, then eases into a close side follow as she moves through shafts of harsh sunlight and rotating warning shadows. Highly detailed cinematic sci-fi, realistic materials, subtle lens bloom, dramatic contrast, smooth motion, coherent character design, polished commercial-quality visuals.",
      "width": 1920,
      "height": 1080,
      "duration": 5,
      "seed": 91569,
      "providerSettings": {
        "vidu": {
          "movementAmplitude": "medium",
          "style": "general"
        }
      }
    }
  ]'
runware run vidu:1@1 \
  positivePrompt="Inside a damaged orbital greenhouse corridor, cracked glass panels reveal a sweeping view of Saturn's rings beyond. Vines drift in low gravity, loose seed packets tumble through the air, and emergency guidance strips pulse amber along the floor. A young maintenance engineer in a white exosuit pushes off a wall and glides forward, catching a floating tablet, then turning toward a sealed hatch as tiny droplets and leaves spin around her. The camera begins with a wide tracking shot down the curved corridor, then eases into a close side follow as she moves through shafts of harsh sunlight and rotating warning shadows. Highly detailed cinematic sci-fi, realistic materials, subtle lens bloom, dramatic contrast, smooth motion, coherent character design, polished commercial-quality visuals." \
  width=1920 \
  height=1080 \
  duration=5 \
  seed=91569 \
  providerSettings.vidu.movementAmplitude=medium \
  providerSettings.vidu.style=general
{
  "taskType": "videoInference",
  "taskUUID": "f3b64352-98e2-48a6-a7fe-7d77a2e75040",
  "model": "vidu:1@1",
  "positivePrompt": "Inside a damaged orbital greenhouse corridor, cracked glass panels reveal a sweeping view of Saturn's rings beyond. Vines drift in low gravity, loose seed packets tumble through the air, and emergency guidance strips pulse amber along the floor. A young maintenance engineer in a white exosuit pushes off a wall and glides forward, catching a floating tablet, then turning toward a sealed hatch as tiny droplets and leaves spin around her. The camera begins with a wide tracking shot down the curved corridor, then eases into a close side follow as she moves through shafts of harsh sunlight and rotating warning shadows. Highly detailed cinematic sci-fi, realistic materials, subtle lens bloom, dramatic contrast, smooth motion, coherent character design, polished commercial-quality visuals.",
  "width": 1920,
  "height": 1080,
  "duration": 5,
  "seed": 91569,
  "providerSettings": {
    "vidu": {
      "movementAmplitude": "medium",
      "style": "general"
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "f3b64352-98e2-48a6-a7fe-7d77a2e75040",
  "videoUUID": "278a81ef-9494-4f30-9b0f-a9d7aa682a7d",
  "videoURL": "https://vm.runware.ai/video/os/a01d21/ws/5/vi/278a81ef-9494-4f30-9b0f-a9d7aa682a7d.mp4",
  "seed": 91569,
  "cost": 0.22
}