MODEL IDgoogle:3@3
live

Veo 3.1 Fast

Google
by Google

Veo 3.1 Fast is a high speed variant of Veo 3.1 for rapid creative iteration. It supports text prompts, image prompts, and reference images. It targets low latency workflows while keeping cinematic quality for short form and multi shot video generation with native audio.

Veo 3.1 Fast
text-to-video

Night Transit Director Portrait Loop

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Create a cinematic landscape executive headshot of a 58-year-old woman who directs overnight rail operations, framed chest-up in a real metropolitan transit control room. She has a close-cropped silver haircut, thoughtful brown eyes, and wears a tailored charcoal work jacket over a muted rust blouse, with no logos or text. Premium but natural portrait enhancement: balanced skin tone, gently softened under-eye shadows, controlled shine, tidy flyaways, crisp eyes, realistic pores and age lines preserved, no plastic skin or face reshaping. Use a locked camera with an 85mm portrait-lens look and shallow depth of field. Soft warm key light models her face while dim teal and amber control-room lights form clean bokeh behind her. At first she looks slightly off camera, listening with calm concentration. Over the clip, distant status lights change softly and an out-of-focus train diagram scrolls across a background monitor; she takes a quiet breath, turns her eyes directly toward the lens, and settles into a subtle, confident smile by the final second. Keep facial identity, anatomy, wardrobe, and lighting stable throughout. Professional, composed, credible mood; refined charcoal, teal, and amber palette. No titles, captions, interface overlays, visible brand marks, or dramatic camera movement. Synchronized ambient sound only: low ventilation hum, subdued electronic relay clicks, a faint distant train rumble, and soft fabric movement as she breathes; no speech and no music.',
  width: 1920,
  height: 1080,
  duration: 6,
  providerSettings: {
    google: {
      enhancePrompt: true,
      generateAudio: true
    }
  }
})
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": "google:3@3",
            "positivePrompt": "Create a cinematic landscape executive headshot of a 58-year-old woman who directs overnight rail operations, framed chest-up in a real metropolitan transit control room. She has a close-cropped silver haircut, thoughtful brown eyes, and wears a tailored charcoal work jacket over a muted rust blouse, with no logos or text. Premium but natural portrait enhancement: balanced skin tone, gently softened under-eye shadows, controlled shine, tidy flyaways, crisp eyes, realistic pores and age lines preserved, no plastic skin or face reshaping. Use a locked camera with an 85mm portrait-lens look and shallow depth of field. Soft warm key light models her face while dim teal and amber control-room lights form clean bokeh behind her. At first she looks slightly off camera, listening with calm concentration. Over the clip, distant status lights change softly and an out-of-focus train diagram scrolls across a background monitor; she takes a quiet breath, turns her eyes directly toward the lens, and settles into a subtle, confident smile by the final second. Keep facial identity, anatomy, wardrobe, and lighting stable throughout. Professional, composed, credible mood; refined charcoal, teal, and amber palette. No titles, captions, interface overlays, visible brand marks, or dramatic camera movement. Synchronized ambient sound only: low ventilation hum, subdued electronic relay clicks, a faint distant train rumble, and soft fabric movement as she breathes; no speech and no music.",
            "width": 1920,
            "height": 1080,
            "duration": 6,
            "providerSettings": {
                "google": {
                    "enhancePrompt": True,
                    "generateAudio": True
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "3a4ed17f-b4c2-4e73-aefb-a8a07c2f6fc4",
      "model": "google:3@3",
      "positivePrompt": "Create a cinematic landscape executive headshot of a 58-year-old woman who directs overnight rail operations, framed chest-up in a real metropolitan transit control room. She has a close-cropped silver haircut, thoughtful brown eyes, and wears a tailored charcoal work jacket over a muted rust blouse, with no logos or text. Premium but natural portrait enhancement: balanced skin tone, gently softened under-eye shadows, controlled shine, tidy flyaways, crisp eyes, realistic pores and age lines preserved, no plastic skin or face reshaping. Use a locked camera with an 85mm portrait-lens look and shallow depth of field. Soft warm key light models her face while dim teal and amber control-room lights form clean bokeh behind her. At first she looks slightly off camera, listening with calm concentration. Over the clip, distant status lights change softly and an out-of-focus train diagram scrolls across a background monitor; she takes a quiet breath, turns her eyes directly toward the lens, and settles into a subtle, confident smile by the final second. Keep facial identity, anatomy, wardrobe, and lighting stable throughout. Professional, composed, credible mood; refined charcoal, teal, and amber palette. No titles, captions, interface overlays, visible brand marks, or dramatic camera movement. Synchronized ambient sound only: low ventilation hum, subdued electronic relay clicks, a faint distant train rumble, and soft fabric movement as she breathes; no speech and no music.",
      "width": 1920,
      "height": 1080,
      "duration": 6,
      "providerSettings": {
        "google": {
          "enhancePrompt": true,
          "generateAudio": true
        }
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Create a cinematic landscape executive headshot of a 58-year-old woman who directs overnight rail operations, framed chest-up in a real metropolitan transit control room. She has a close-cropped silver haircut, thoughtful brown eyes, and wears a tailored charcoal work jacket over a muted rust blouse, with no logos or text. Premium but natural portrait enhancement: balanced skin tone, gently softened under-eye shadows, controlled shine, tidy flyaways, crisp eyes, realistic pores and age lines preserved, no plastic skin or face reshaping. Use a locked camera with an 85mm portrait-lens look and shallow depth of field. Soft warm key light models her face while dim teal and amber control-room lights form clean bokeh behind her. At first she looks slightly off camera, listening with calm concentration. Over the clip, distant status lights change softly and an out-of-focus train diagram scrolls across a background monitor; she takes a quiet breath, turns her eyes directly toward the lens, and settles into a subtle, confident smile by the final second. Keep facial identity, anatomy, wardrobe, and lighting stable throughout. Professional, composed, credible mood; refined charcoal, teal, and amber palette. No titles, captions, interface overlays, visible brand marks, or dramatic camera movement. Synchronized ambient sound only: low ventilation hum, subdued electronic relay clicks, a faint distant train rumble, and soft fabric movement as she breathes; no speech and no music." \
  width=1920 \
  height=1080 \
  duration=6 \
  providerSettings.google.enhancePrompt=true \
  providerSettings.google.generateAudio=true
{
  "taskType": "videoInference",
  "taskUUID": "3a4ed17f-b4c2-4e73-aefb-a8a07c2f6fc4",
  "model": "google:3@3",
  "positivePrompt": "Create a cinematic landscape executive headshot of a 58-year-old woman who directs overnight rail operations, framed chest-up in a real metropolitan transit control room. She has a close-cropped silver haircut, thoughtful brown eyes, and wears a tailored charcoal work jacket over a muted rust blouse, with no logos or text. Premium but natural portrait enhancement: balanced skin tone, gently softened under-eye shadows, controlled shine, tidy flyaways, crisp eyes, realistic pores and age lines preserved, no plastic skin or face reshaping. Use a locked camera with an 85mm portrait-lens look and shallow depth of field. Soft warm key light models her face while dim teal and amber control-room lights form clean bokeh behind her. At first she looks slightly off camera, listening with calm concentration. Over the clip, distant status lights change softly and an out-of-focus train diagram scrolls across a background monitor; she takes a quiet breath, turns her eyes directly toward the lens, and settles into a subtle, confident smile by the final second. Keep facial identity, anatomy, wardrobe, and lighting stable throughout. Professional, composed, credible mood; refined charcoal, teal, and amber palette. No titles, captions, interface overlays, visible brand marks, or dramatic camera movement. Synchronized ambient sound only: low ventilation hum, subdued electronic relay clicks, a faint distant train rumble, and soft fabric movement as she breathes; no speech and no music.",
  "width": 1920,
  "height": 1080,
  "duration": 6,
  "providerSettings": {
    "google": {
      "enhancePrompt": true,
      "generateAudio": true
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "3a4ed17f-b4c2-4e73-aefb-a8a07c2f6fc4",
  "videoUUID": "76e18cd0-7732-40b1-9e65-2dc073a686e5",
  "videoURL": "https://vm.runware.ai/video/os/a05d22/ws/5/vi/76e18cd0-7732-40b1-9e65-2dc073a686e5.mp4",
  "seed": 109483330,
  "cost": 0.9
}
first-frame

Bronze Bell Foundry B-Roll

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Continue naturally from the supplied opening frame as one uninterrupted documentary b-roll shot. The suspended crucible tips farther and a smooth stream of glowing molten bronze pours into the clay bell mold. The foundry worker steadies the control bar, shifts their weight realistically, and watches the pour through the face shield. Small sparks fall and extinguish near the mold while heat shimmer bends the background; faint smoke drifts upward into the roof trusses. Execute a slow, stable camera dolly forward with slight parallax along the receding workshop aisle, keeping the worker and bronze stream sharp while the distant foundry remains softly dimensional. Authentic physics, restrained motion, cinematic naturalism, rich ember orange against soot black and muted steel, realistic protective equipment. Synchronized location audio only: furnace roar, liquid metal hiss, chain creak, and subtle workshop resonance. No music, dialogue, captions, logos, cuts, time-lapse, or slow motion.',
  resolution: '720p',
  duration: 4,
  providerSettings: {
    google: {
      resizeMode: 'crop'
    }
  },
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/717f866e-d70c-4424-8a15-0b8e7ad1506c.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": "google:3@3",
            "positivePrompt": "Continue naturally from the supplied opening frame as one uninterrupted documentary b-roll shot. The suspended crucible tips farther and a smooth stream of glowing molten bronze pours into the clay bell mold. The foundry worker steadies the control bar, shifts their weight realistically, and watches the pour through the face shield. Small sparks fall and extinguish near the mold while heat shimmer bends the background; faint smoke drifts upward into the roof trusses. Execute a slow, stable camera dolly forward with slight parallax along the receding workshop aisle, keeping the worker and bronze stream sharp while the distant foundry remains softly dimensional. Authentic physics, restrained motion, cinematic naturalism, rich ember orange against soot black and muted steel, realistic protective equipment. Synchronized location audio only: furnace roar, liquid metal hiss, chain creak, and subtle workshop resonance. No music, dialogue, captions, logos, cuts, time-lapse, or slow motion.",
            "resolution": "720p",
            "duration": 4,
            "providerSettings": {
                "google": {
                    "resizeMode": "crop"
                }
            },
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/717f866e-d70c-4424-8a15-0b8e7ad1506c.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": "0e1fe919-88b8-4346-9f88-e0d5c3bdc11a",
      "model": "google:3@3",
      "positivePrompt": "Continue naturally from the supplied opening frame as one uninterrupted documentary b-roll shot. The suspended crucible tips farther and a smooth stream of glowing molten bronze pours into the clay bell mold. The foundry worker steadies the control bar, shifts their weight realistically, and watches the pour through the face shield. Small sparks fall and extinguish near the mold while heat shimmer bends the background; faint smoke drifts upward into the roof trusses. Execute a slow, stable camera dolly forward with slight parallax along the receding workshop aisle, keeping the worker and bronze stream sharp while the distant foundry remains softly dimensional. Authentic physics, restrained motion, cinematic naturalism, rich ember orange against soot black and muted steel, realistic protective equipment. Synchronized location audio only: furnace roar, liquid metal hiss, chain creak, and subtle workshop resonance. No music, dialogue, captions, logos, cuts, time-lapse, or slow motion.",
      "resolution": "720p",
      "duration": 4,
      "providerSettings": {
        "google": {
          "resizeMode": "crop"
        }
      },
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/717f866e-d70c-4424-8a15-0b8e7ad1506c.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Continue naturally from the supplied opening frame as one uninterrupted documentary b-roll shot. The suspended crucible tips farther and a smooth stream of glowing molten bronze pours into the clay bell mold. The foundry worker steadies the control bar, shifts their weight realistically, and watches the pour through the face shield. Small sparks fall and extinguish near the mold while heat shimmer bends the background; faint smoke drifts upward into the roof trusses. Execute a slow, stable camera dolly forward with slight parallax along the receding workshop aisle, keeping the worker and bronze stream sharp while the distant foundry remains softly dimensional. Authentic physics, restrained motion, cinematic naturalism, rich ember orange against soot black and muted steel, realistic protective equipment. Synchronized location audio only: furnace roar, liquid metal hiss, chain creak, and subtle workshop resonance. No music, dialogue, captions, logos, cuts, time-lapse, or slow motion." \
  resolution=720p \
  duration=4 \
  providerSettings.google.resizeMode=crop \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/717f866e-d70c-4424-8a15-0b8e7ad1506c.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "0e1fe919-88b8-4346-9f88-e0d5c3bdc11a",
  "model": "google:3@3",
  "positivePrompt": "Continue naturally from the supplied opening frame as one uninterrupted documentary b-roll shot. The suspended crucible tips farther and a smooth stream of glowing molten bronze pours into the clay bell mold. The foundry worker steadies the control bar, shifts their weight realistically, and watches the pour through the face shield. Small sparks fall and extinguish near the mold while heat shimmer bends the background; faint smoke drifts upward into the roof trusses. Execute a slow, stable camera dolly forward with slight parallax along the receding workshop aisle, keeping the worker and bronze stream sharp while the distant foundry remains softly dimensional. Authentic physics, restrained motion, cinematic naturalism, rich ember orange against soot black and muted steel, realistic protective equipment. Synchronized location audio only: furnace roar, liquid metal hiss, chain creak, and subtle workshop resonance. No music, dialogue, captions, logos, cuts, time-lapse, or slow motion.",
  "resolution": "720p",
  "duration": 4,
  "providerSettings": {
    "google": {
      "resizeMode": "crop"
    }
  },
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/717f866e-d70c-4424-8a15-0b8e7ad1506c.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "0e1fe919-88b8-4346-9f88-e0d5c3bdc11a",
  "videoUUID": "f21a1651-7755-4a36-a64e-9f52b0453ced",
  "videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/f21a1651-7755-4a36-a64e-9f52b0453ced.mp4",
  "seed": 1555852357,
  "cost": 0.6
}
first-last-frame

Ammonite Fossil Preparation B-Roll

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Create a single continuous 8-second museum-science b-roll shot connecting the supplied first and last frames. A fossil preparator carefully guides the slender pneumatic air scribe clockwise along the ammonite\'s outer curve while the other gloved hand keeps the limestone stable. The vibrating tip chips away only a thin crust of matrix, gradually revealing several sharply defined spiral ribs and producing tiny believable puffs and grains of pale stone dust. Preserve the exact ammonite, hand positions, gloves, tool, bench layout, warm task-lamp direction and shallow depth of field from the endpoint images. Motion must be restrained, precise and physically credible: subtle tool vibration, minute finger adjustments, dust settling naturally, no sudden fracture and no time-lapse jump. Camera remains in a tight overhead three-quarter macro composition with a very slow, smooth push-in, keeping the active tool tip and newly exposed fossil texture in focus. Authentic documentary stock-footage aesthetic for a natural-history museum or paleontology feature; warm limestone beige, dusty blue gloves and brushed silver tool, no captions, logos or visible writing. Synchronized production sound only: a quiet compressed-air hiss begins as the tip touches stone, fine rapid metallic tapping follows the tool\'s movement, tiny grit softly patters onto the bench, then the scribe lifts near the end and the hiss stops, leaving faint laboratory room tone. No speech and no music.',
  resolution: '1080p',
  duration: 8,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/9318fa6f-4c60-4646-ae6e-01ea5e1cc3ad.jpg',
        frame: 'first'
      },
      {
        image: 'https://assets.runware.ai/assets/inputs/a8a09aa3-03ad-4d84-9218-fcdf15e78d73.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": "google:3@3",
            "positivePrompt": "Create a single continuous 8-second museum-science b-roll shot connecting the supplied first and last frames. A fossil preparator carefully guides the slender pneumatic air scribe clockwise along the ammonite's outer curve while the other gloved hand keeps the limestone stable. The vibrating tip chips away only a thin crust of matrix, gradually revealing several sharply defined spiral ribs and producing tiny believable puffs and grains of pale stone dust. Preserve the exact ammonite, hand positions, gloves, tool, bench layout, warm task-lamp direction and shallow depth of field from the endpoint images. Motion must be restrained, precise and physically credible: subtle tool vibration, minute finger adjustments, dust settling naturally, no sudden fracture and no time-lapse jump. Camera remains in a tight overhead three-quarter macro composition with a very slow, smooth push-in, keeping the active tool tip and newly exposed fossil texture in focus. Authentic documentary stock-footage aesthetic for a natural-history museum or paleontology feature; warm limestone beige, dusty blue gloves and brushed silver tool, no captions, logos or visible writing. Synchronized production sound only: a quiet compressed-air hiss begins as the tip touches stone, fine rapid metallic tapping follows the tool's movement, tiny grit softly patters onto the bench, then the scribe lifts near the end and the hiss stops, leaving faint laboratory room tone. No speech and no music.",
            "resolution": "1080p",
            "duration": 8,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/9318fa6f-4c60-4646-ae6e-01ea5e1cc3ad.jpg",
                        "frame": "first"
                    },
                    {
                        "image": "https://assets.runware.ai/assets/inputs/a8a09aa3-03ad-4d84-9218-fcdf15e78d73.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": "0867ddfe-46d9-45c3-8df3-0573264c4e29",
      "model": "google:3@3",
      "positivePrompt": "Create a single continuous 8-second museum-science b-roll shot connecting the supplied first and last frames. A fossil preparator carefully guides the slender pneumatic air scribe clockwise along the ammonite's outer curve while the other gloved hand keeps the limestone stable. The vibrating tip chips away only a thin crust of matrix, gradually revealing several sharply defined spiral ribs and producing tiny believable puffs and grains of pale stone dust. Preserve the exact ammonite, hand positions, gloves, tool, bench layout, warm task-lamp direction and shallow depth of field from the endpoint images. Motion must be restrained, precise and physically credible: subtle tool vibration, minute finger adjustments, dust settling naturally, no sudden fracture and no time-lapse jump. Camera remains in a tight overhead three-quarter macro composition with a very slow, smooth push-in, keeping the active tool tip and newly exposed fossil texture in focus. Authentic documentary stock-footage aesthetic for a natural-history museum or paleontology feature; warm limestone beige, dusty blue gloves and brushed silver tool, no captions, logos or visible writing. Synchronized production sound only: a quiet compressed-air hiss begins as the tip touches stone, fine rapid metallic tapping follows the tool's movement, tiny grit softly patters onto the bench, then the scribe lifts near the end and the hiss stops, leaving faint laboratory room tone. No speech and no music.",
      "resolution": "1080p",
      "duration": 8,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/9318fa6f-4c60-4646-ae6e-01ea5e1cc3ad.jpg",
            "frame": "first"
          },
          {
            "image": "https://assets.runware.ai/assets/inputs/a8a09aa3-03ad-4d84-9218-fcdf15e78d73.jpg",
            "frame": "last"
          }
        ]
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Create a single continuous 8-second museum-science b-roll shot connecting the supplied first and last frames. A fossil preparator carefully guides the slender pneumatic air scribe clockwise along the ammonite's outer curve while the other gloved hand keeps the limestone stable. The vibrating tip chips away only a thin crust of matrix, gradually revealing several sharply defined spiral ribs and producing tiny believable puffs and grains of pale stone dust. Preserve the exact ammonite, hand positions, gloves, tool, bench layout, warm task-lamp direction and shallow depth of field from the endpoint images. Motion must be restrained, precise and physically credible: subtle tool vibration, minute finger adjustments, dust settling naturally, no sudden fracture and no time-lapse jump. Camera remains in a tight overhead three-quarter macro composition with a very slow, smooth push-in, keeping the active tool tip and newly exposed fossil texture in focus. Authentic documentary stock-footage aesthetic for a natural-history museum or paleontology feature; warm limestone beige, dusty blue gloves and brushed silver tool, no captions, logos or visible writing. Synchronized production sound only: a quiet compressed-air hiss begins as the tip touches stone, fine rapid metallic tapping follows the tool's movement, tiny grit softly patters onto the bench, then the scribe lifts near the end and the hiss stops, leaving faint laboratory room tone. No speech and no music." \
  resolution=1080p \
  duration=8 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/9318fa6f-4c60-4646-ae6e-01ea5e1cc3ad.jpg \
  inputs.frameImages.0.frame=first \
  inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/a8a09aa3-03ad-4d84-9218-fcdf15e78d73.jpg \
  inputs.frameImages.1.frame=last
{
  "taskType": "videoInference",
  "taskUUID": "0867ddfe-46d9-45c3-8df3-0573264c4e29",
  "model": "google:3@3",
  "positivePrompt": "Create a single continuous 8-second museum-science b-roll shot connecting the supplied first and last frames. A fossil preparator carefully guides the slender pneumatic air scribe clockwise along the ammonite's outer curve while the other gloved hand keeps the limestone stable. The vibrating tip chips away only a thin crust of matrix, gradually revealing several sharply defined spiral ribs and producing tiny believable puffs and grains of pale stone dust. Preserve the exact ammonite, hand positions, gloves, tool, bench layout, warm task-lamp direction and shallow depth of field from the endpoint images. Motion must be restrained, precise and physically credible: subtle tool vibration, minute finger adjustments, dust settling naturally, no sudden fracture and no time-lapse jump. Camera remains in a tight overhead three-quarter macro composition with a very slow, smooth push-in, keeping the active tool tip and newly exposed fossil texture in focus. Authentic documentary stock-footage aesthetic for a natural-history museum or paleontology feature; warm limestone beige, dusty blue gloves and brushed silver tool, no captions, logos or visible writing. Synchronized production sound only: a quiet compressed-air hiss begins as the tip touches stone, fine rapid metallic tapping follows the tool's movement, tiny grit softly patters onto the bench, then the scribe lifts near the end and the hiss stops, leaving faint laboratory room tone. No speech and no music.",
  "resolution": "1080p",
  "duration": 8,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/9318fa6f-4c60-4646-ae6e-01ea5e1cc3ad.jpg",
        "frame": "first"
      },
      {
        "image": "https://assets.runware.ai/assets/inputs/a8a09aa3-03ad-4d84-9218-fcdf15e78d73.jpg",
        "frame": "last"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "0867ddfe-46d9-45c3-8df3-0573264c4e29",
  "videoUUID": "72c59666-e96d-441b-b3a3-95bd3673e325",
  "videoURL": "https://vm.runware.ai/video/os/a04d20/ws/5/vi/72c59666-e96d-441b-b3a3-95bd3673e325.mp4",
  "seed": 753346246,
  "cost": 1.2
}
Image to Video

Tethered Airship Repair Approach

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Extend the provided video seamlessly. Continue the slow forward camera movement as the cargo airship nears a narrow gap between colossal sandstone spires high above a cloud layer. A mechanic in a patched amber flight coat steps carefully onto the outer rigging and secures a snapping cable while fabric sails strain in the wind. The ship creaks, metal rings vibrate, loose tools rattle, and distant birds circle below. As the cable is fastened, the vessel stabilizes and glides through the gap, revealing a vast aerial caravan route with several far-off balloon craft crossing the horizon. Preserve continuity with the original clip\'s lighting, lens feel, weathered textures, and motion. Emphasize cinematic realism, expressive environmental sound, layered depth, and smooth continuation rather than a cut to a different scene.',
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/45f88540-c9cf-42c2-867b-154adbd6fa3d.mp4'
  }
})
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": "google:3@3",
            "positivePrompt": "Extend the provided video seamlessly. Continue the slow forward camera movement as the cargo airship nears a narrow gap between colossal sandstone spires high above a cloud layer. A mechanic in a patched amber flight coat steps carefully onto the outer rigging and secures a snapping cable while fabric sails strain in the wind. The ship creaks, metal rings vibrate, loose tools rattle, and distant birds circle below. As the cable is fastened, the vessel stabilizes and glides through the gap, revealing a vast aerial caravan route with several far-off balloon craft crossing the horizon. Preserve continuity with the original clip's lighting, lens feel, weathered textures, and motion. Emphasize cinematic realism, expressive environmental sound, layered depth, and smooth continuation rather than a cut to a different scene.",
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/45f88540-c9cf-42c2-867b-154adbd6fa3d.mp4"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "03dfc4bf-b344-457a-8154-833484348cf1",
      "model": "google:3@3",
      "positivePrompt": "Extend the provided video seamlessly. Continue the slow forward camera movement as the cargo airship nears a narrow gap between colossal sandstone spires high above a cloud layer. A mechanic in a patched amber flight coat steps carefully onto the outer rigging and secures a snapping cable while fabric sails strain in the wind. The ship creaks, metal rings vibrate, loose tools rattle, and distant birds circle below. As the cable is fastened, the vessel stabilizes and glides through the gap, revealing a vast aerial caravan route with several far-off balloon craft crossing the horizon. Preserve continuity with the original clip's lighting, lens feel, weathered textures, and motion. Emphasize cinematic realism, expressive environmental sound, layered depth, and smooth continuation rather than a cut to a different scene.",
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/45f88540-c9cf-42c2-867b-154adbd6fa3d.mp4"
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Extend the provided video seamlessly. Continue the slow forward camera movement as the cargo airship nears a narrow gap between colossal sandstone spires high above a cloud layer. A mechanic in a patched amber flight coat steps carefully onto the outer rigging and secures a snapping cable while fabric sails strain in the wind. The ship creaks, metal rings vibrate, loose tools rattle, and distant birds circle below. As the cable is fastened, the vessel stabilizes and glides through the gap, revealing a vast aerial caravan route with several far-off balloon craft crossing the horizon. Preserve continuity with the original clip's lighting, lens feel, weathered textures, and motion. Emphasize cinematic realism, expressive environmental sound, layered depth, and smooth continuation rather than a cut to a different scene." \
  inputs.video=https://assets.runware.ai/assets/inputs/45f88540-c9cf-42c2-867b-154adbd6fa3d.mp4
{
  "taskType": "videoInference",
  "taskUUID": "03dfc4bf-b344-457a-8154-833484348cf1",
  "model": "google:3@3",
  "positivePrompt": "Extend the provided video seamlessly. Continue the slow forward camera movement as the cargo airship nears a narrow gap between colossal sandstone spires high above a cloud layer. A mechanic in a patched amber flight coat steps carefully onto the outer rigging and secures a snapping cable while fabric sails strain in the wind. The ship creaks, metal rings vibrate, loose tools rattle, and distant birds circle below. As the cable is fastened, the vessel stabilizes and glides through the gap, revealing a vast aerial caravan route with several far-off balloon craft crossing the horizon. Preserve continuity with the original clip's lighting, lens feel, weathered textures, and motion. Emphasize cinematic realism, expressive environmental sound, layered depth, and smooth continuation rather than a cut to a different scene.",
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/45f88540-c9cf-42c2-867b-154adbd6fa3d.mp4"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "03dfc4bf-b344-457a-8154-833484348cf1",
  "videoUUID": "210c57ac-af0b-4e18-971c-3cd1ededc6eb",
  "videoURL": "https://vm.runware.ai/video/os/a13d12/ws/5/vi/210c57ac-af0b-4e18-971c-3cd1ededc6eb.mp4",
  "seed": 1812099483,
  "cost": 1.2
}
video-extend

Precision Fermentation Sampling B-Roll

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Continue naturally beyond the source video\'s final frame as one uninterrupted seven-second stock b-roll shot. Preserve the same technician, blue gloves, white cleanroom sleeve, stainless-steel bioreactor, sampling port, clear vial, lighting, reflections, depth of field, camera height, lens character, and slow rightward dolly. The warm amber fermentation sample continues flowing smoothly into the vial. As it reaches roughly three-quarters full, the technician turns the same valve closed with a precise gloved movement; the stream narrows and stops with one final drop. The technician gently lowers the vial, tilts it slightly toward the overhead light to inspect its clarity, and holds it steady near the sight glass as the camera keeps drifting right. Maintain realistic liquid physics, restrained professional handling, cool cyan industrial tones with amber highlights, and polished observational documentary cinematography. Preserve audiovisual continuity: the same low ventilation and machinery hum, flowing-liquid hiss that fades when the valve closes, a soft mechanical click, subtle glove and glass handling sounds, and no speech or music. No cut, transition, time jump, new subject, logo, or readable text.',
  duration: 7,
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/5259794f-a6ab-471a-a70b-d8bccdbcd968.mp4'
  }
})
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": "google:3@3",
            "positivePrompt": "Continue naturally beyond the source video's final frame as one uninterrupted seven-second stock b-roll shot. Preserve the same technician, blue gloves, white cleanroom sleeve, stainless-steel bioreactor, sampling port, clear vial, lighting, reflections, depth of field, camera height, lens character, and slow rightward dolly. The warm amber fermentation sample continues flowing smoothly into the vial. As it reaches roughly three-quarters full, the technician turns the same valve closed with a precise gloved movement; the stream narrows and stops with one final drop. The technician gently lowers the vial, tilts it slightly toward the overhead light to inspect its clarity, and holds it steady near the sight glass as the camera keeps drifting right. Maintain realistic liquid physics, restrained professional handling, cool cyan industrial tones with amber highlights, and polished observational documentary cinematography. Preserve audiovisual continuity: the same low ventilation and machinery hum, flowing-liquid hiss that fades when the valve closes, a soft mechanical click, subtle glove and glass handling sounds, and no speech or music. No cut, transition, time jump, new subject, logo, or readable text.",
            "duration": 7,
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/5259794f-a6ab-471a-a70b-d8bccdbcd968.mp4"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "725348dc-dab7-40b8-999f-c1690bc9ac8b",
      "model": "google:3@3",
      "positivePrompt": "Continue naturally beyond the source video's final frame as one uninterrupted seven-second stock b-roll shot. Preserve the same technician, blue gloves, white cleanroom sleeve, stainless-steel bioreactor, sampling port, clear vial, lighting, reflections, depth of field, camera height, lens character, and slow rightward dolly. The warm amber fermentation sample continues flowing smoothly into the vial. As it reaches roughly three-quarters full, the technician turns the same valve closed with a precise gloved movement; the stream narrows and stops with one final drop. The technician gently lowers the vial, tilts it slightly toward the overhead light to inspect its clarity, and holds it steady near the sight glass as the camera keeps drifting right. Maintain realistic liquid physics, restrained professional handling, cool cyan industrial tones with amber highlights, and polished observational documentary cinematography. Preserve audiovisual continuity: the same low ventilation and machinery hum, flowing-liquid hiss that fades when the valve closes, a soft mechanical click, subtle glove and glass handling sounds, and no speech or music. No cut, transition, time jump, new subject, logo, or readable text.",
      "duration": 7,
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/5259794f-a6ab-471a-a70b-d8bccdbcd968.mp4"
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Continue naturally beyond the source video's final frame as one uninterrupted seven-second stock b-roll shot. Preserve the same technician, blue gloves, white cleanroom sleeve, stainless-steel bioreactor, sampling port, clear vial, lighting, reflections, depth of field, camera height, lens character, and slow rightward dolly. The warm amber fermentation sample continues flowing smoothly into the vial. As it reaches roughly three-quarters full, the technician turns the same valve closed with a precise gloved movement; the stream narrows and stops with one final drop. The technician gently lowers the vial, tilts it slightly toward the overhead light to inspect its clarity, and holds it steady near the sight glass as the camera keeps drifting right. Maintain realistic liquid physics, restrained professional handling, cool cyan industrial tones with amber highlights, and polished observational documentary cinematography. Preserve audiovisual continuity: the same low ventilation and machinery hum, flowing-liquid hiss that fades when the valve closes, a soft mechanical click, subtle glove and glass handling sounds, and no speech or music. No cut, transition, time jump, new subject, logo, or readable text." \
  duration=7 \
  inputs.video=https://assets.runware.ai/assets/inputs/5259794f-a6ab-471a-a70b-d8bccdbcd968.mp4
{
  "taskType": "videoInference",
  "taskUUID": "725348dc-dab7-40b8-999f-c1690bc9ac8b",
  "model": "google:3@3",
  "positivePrompt": "Continue naturally beyond the source video's final frame as one uninterrupted seven-second stock b-roll shot. Preserve the same technician, blue gloves, white cleanroom sleeve, stainless-steel bioreactor, sampling port, clear vial, lighting, reflections, depth of field, camera height, lens character, and slow rightward dolly. The warm amber fermentation sample continues flowing smoothly into the vial. As it reaches roughly three-quarters full, the technician turns the same valve closed with a precise gloved movement; the stream narrows and stops with one final drop. The technician gently lowers the vial, tilts it slightly toward the overhead light to inspect its clarity, and holds it steady near the sight glass as the camera keeps drifting right. Maintain realistic liquid physics, restrained professional handling, cool cyan industrial tones with amber highlights, and polished observational documentary cinematography. Preserve audiovisual continuity: the same low ventilation and machinery hum, flowing-liquid hiss that fades when the valve closes, a soft mechanical click, subtle glove and glass handling sounds, and no speech or music. No cut, transition, time jump, new subject, logo, or readable text.",
  "duration": 7,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/5259794f-a6ab-471a-a70b-d8bccdbcd968.mp4"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "725348dc-dab7-40b8-999f-c1690bc9ac8b",
  "videoUUID": "d4d25d55-fd0f-4ecf-9a85-b6f2a566b10d",
  "videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/d4d25d55-fd0f-4ecf-9a85-b6f2a566b10d.mp4",
  "seed": 511819164,
  "cost": 1.05
}
Image to Video

Windblown Cliffside Falconer Camp

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Starting from the provided first frame, create a cinematic 8-second shot of a cliffside falconer camp above a restless ocean at golden hour. The camera makes a slow forward drift with slight lateral movement. The falconer remains the focal subject while the bird blinks, shifts its weight, ruffles feathers, and briefly spreads one wing against the wind. Canvas tents tug and ripple, ribbons whip sharply, grass bends in gusts, smoke trails from a fire, and pack animals make subtle natural movements in the background. Far below, waves crash against rock faces with visible spray. Preserve grounded realism, tactile fabrics, weathered gear, believable anatomy, and cohesive lighting. Emphasize sweeping atmosphere, layered depth, and documentary-style cinematic detail. Generate synchronized audio with wind gusts, cloth flapping, distant surf, soft camp creaks, and occasional falcon chirps.',
  width: 1920,
  height: 1080,
  duration: 8,
  seed: 49053,
  providerSettings: {
    google: {
      enhancePrompt: true,
      generateAudio: true,
      resizeMode: 'crop'
    }
  },
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/1d985e16-2bea-48f4-8983-04a1ae64d337.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": "google:3@3",
            "positivePrompt": "Starting from the provided first frame, create a cinematic 8-second shot of a cliffside falconer camp above a restless ocean at golden hour. The camera makes a slow forward drift with slight lateral movement. The falconer remains the focal subject while the bird blinks, shifts its weight, ruffles feathers, and briefly spreads one wing against the wind. Canvas tents tug and ripple, ribbons whip sharply, grass bends in gusts, smoke trails from a fire, and pack animals make subtle natural movements in the background. Far below, waves crash against rock faces with visible spray. Preserve grounded realism, tactile fabrics, weathered gear, believable anatomy, and cohesive lighting. Emphasize sweeping atmosphere, layered depth, and documentary-style cinematic detail. Generate synchronized audio with wind gusts, cloth flapping, distant surf, soft camp creaks, and occasional falcon chirps.",
            "width": 1920,
            "height": 1080,
            "duration": 8,
            "seed": 49053,
            "providerSettings": {
                "google": {
                    "enhancePrompt": True,
                    "generateAudio": True,
                    "resizeMode": "crop"
                }
            },
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/1d985e16-2bea-48f4-8983-04a1ae64d337.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": "9c007fe8-e414-42f1-9549-41222e995b01",
      "model": "google:3@3",
      "positivePrompt": "Starting from the provided first frame, create a cinematic 8-second shot of a cliffside falconer camp above a restless ocean at golden hour. The camera makes a slow forward drift with slight lateral movement. The falconer remains the focal subject while the bird blinks, shifts its weight, ruffles feathers, and briefly spreads one wing against the wind. Canvas tents tug and ripple, ribbons whip sharply, grass bends in gusts, smoke trails from a fire, and pack animals make subtle natural movements in the background. Far below, waves crash against rock faces with visible spray. Preserve grounded realism, tactile fabrics, weathered gear, believable anatomy, and cohesive lighting. Emphasize sweeping atmosphere, layered depth, and documentary-style cinematic detail. Generate synchronized audio with wind gusts, cloth flapping, distant surf, soft camp creaks, and occasional falcon chirps.",
      "width": 1920,
      "height": 1080,
      "duration": 8,
      "seed": 49053,
      "providerSettings": {
        "google": {
          "enhancePrompt": true,
          "generateAudio": true,
          "resizeMode": "crop"
        }
      },
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/1d985e16-2bea-48f4-8983-04a1ae64d337.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Starting from the provided first frame, create a cinematic 8-second shot of a cliffside falconer camp above a restless ocean at golden hour. The camera makes a slow forward drift with slight lateral movement. The falconer remains the focal subject while the bird blinks, shifts its weight, ruffles feathers, and briefly spreads one wing against the wind. Canvas tents tug and ripple, ribbons whip sharply, grass bends in gusts, smoke trails from a fire, and pack animals make subtle natural movements in the background. Far below, waves crash against rock faces with visible spray. Preserve grounded realism, tactile fabrics, weathered gear, believable anatomy, and cohesive lighting. Emphasize sweeping atmosphere, layered depth, and documentary-style cinematic detail. Generate synchronized audio with wind gusts, cloth flapping, distant surf, soft camp creaks, and occasional falcon chirps." \
  width=1920 \
  height=1080 \
  duration=8 \
  seed=49053 \
  providerSettings.google.enhancePrompt=true \
  providerSettings.google.generateAudio=true \
  providerSettings.google.resizeMode=crop \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/1d985e16-2bea-48f4-8983-04a1ae64d337.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "9c007fe8-e414-42f1-9549-41222e995b01",
  "model": "google:3@3",
  "positivePrompt": "Starting from the provided first frame, create a cinematic 8-second shot of a cliffside falconer camp above a restless ocean at golden hour. The camera makes a slow forward drift with slight lateral movement. The falconer remains the focal subject while the bird blinks, shifts its weight, ruffles feathers, and briefly spreads one wing against the wind. Canvas tents tug and ripple, ribbons whip sharply, grass bends in gusts, smoke trails from a fire, and pack animals make subtle natural movements in the background. Far below, waves crash against rock faces with visible spray. Preserve grounded realism, tactile fabrics, weathered gear, believable anatomy, and cohesive lighting. Emphasize sweeping atmosphere, layered depth, and documentary-style cinematic detail. Generate synchronized audio with wind gusts, cloth flapping, distant surf, soft camp creaks, and occasional falcon chirps.",
  "width": 1920,
  "height": 1080,
  "duration": 8,
  "seed": 49053,
  "providerSettings": {
    "google": {
      "enhancePrompt": true,
      "generateAudio": true,
      "resizeMode": "crop"
    }
  },
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/1d985e16-2bea-48f4-8983-04a1ae64d337.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "9c007fe8-e414-42f1-9549-41222e995b01",
  "videoUUID": "c6fc50d7-b625-46e5-b10b-75ff5bcad9b7",
  "videoURL": "https://vm.runware.ai/video/os/a19d05/ws/5/vi/c6fc50d7-b625-46e5-b10b-75ff5bcad9b7.mp4",
  "seed": 49053,
  "cost": 1.2
}
Text to Video

Submerged Grand Library Ruins

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'A sweeping cinematic dive through the flooded remains of an ancient grand library beneath clear turquoise water. Towering stone shelves lean at odd angles, thousands of swollen books drift slowly upward, marble busts are wrapped in waving seagrass, and shafts of sunlight ripple through a cracked glass dome overhead. A school of silver fish parts as the camera glides forward between columns carved with faded maps and constellations. Loose pages spin in the current, a brass globe rests half buried in sand, and tiny air bubbles trail past the lens. Midway through the shot, a giant sea turtle crosses the hall, stirring sediment into glowing golden haze. End on a wide reveal of the entire submerged archive with broken staircases, collapsed balconies, and distant whale-song ambience. Natural underwater acoustics, creaking stone, soft currents, rustling paper, graceful cinematic realism, high detail, volumetric light, atmospheric depth.',
  width: 1920,
  height: 1080,
  duration: 8,
  seed: 17459,
  providerSettings: {
    google: {
      enhancePrompt: true,
      generateAudio: true
    }
  }
})
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": "google:3@3",
            "positivePrompt": "A sweeping cinematic dive through the flooded remains of an ancient grand library beneath clear turquoise water. Towering stone shelves lean at odd angles, thousands of swollen books drift slowly upward, marble busts are wrapped in waving seagrass, and shafts of sunlight ripple through a cracked glass dome overhead. A school of silver fish parts as the camera glides forward between columns carved with faded maps and constellations. Loose pages spin in the current, a brass globe rests half buried in sand, and tiny air bubbles trail past the lens. Midway through the shot, a giant sea turtle crosses the hall, stirring sediment into glowing golden haze. End on a wide reveal of the entire submerged archive with broken staircases, collapsed balconies, and distant whale-song ambience. Natural underwater acoustics, creaking stone, soft currents, rustling paper, graceful cinematic realism, high detail, volumetric light, atmospheric depth.",
            "width": 1920,
            "height": 1080,
            "duration": 8,
            "seed": 17459,
            "providerSettings": {
                "google": {
                    "enhancePrompt": True,
                    "generateAudio": True
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "495ff489-3a06-4576-93e0-ab9f2541798d",
      "model": "google:3@3",
      "positivePrompt": "A sweeping cinematic dive through the flooded remains of an ancient grand library beneath clear turquoise water. Towering stone shelves lean at odd angles, thousands of swollen books drift slowly upward, marble busts are wrapped in waving seagrass, and shafts of sunlight ripple through a cracked glass dome overhead. A school of silver fish parts as the camera glides forward between columns carved with faded maps and constellations. Loose pages spin in the current, a brass globe rests half buried in sand, and tiny air bubbles trail past the lens. Midway through the shot, a giant sea turtle crosses the hall, stirring sediment into glowing golden haze. End on a wide reveal of the entire submerged archive with broken staircases, collapsed balconies, and distant whale-song ambience. Natural underwater acoustics, creaking stone, soft currents, rustling paper, graceful cinematic realism, high detail, volumetric light, atmospheric depth.",
      "width": 1920,
      "height": 1080,
      "duration": 8,
      "seed": 17459,
      "providerSettings": {
        "google": {
          "enhancePrompt": true,
          "generateAudio": true
        }
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="A sweeping cinematic dive through the flooded remains of an ancient grand library beneath clear turquoise water. Towering stone shelves lean at odd angles, thousands of swollen books drift slowly upward, marble busts are wrapped in waving seagrass, and shafts of sunlight ripple through a cracked glass dome overhead. A school of silver fish parts as the camera glides forward between columns carved with faded maps and constellations. Loose pages spin in the current, a brass globe rests half buried in sand, and tiny air bubbles trail past the lens. Midway through the shot, a giant sea turtle crosses the hall, stirring sediment into glowing golden haze. End on a wide reveal of the entire submerged archive with broken staircases, collapsed balconies, and distant whale-song ambience. Natural underwater acoustics, creaking stone, soft currents, rustling paper, graceful cinematic realism, high detail, volumetric light, atmospheric depth." \
  width=1920 \
  height=1080 \
  duration=8 \
  seed=17459 \
  providerSettings.google.enhancePrompt=true \
  providerSettings.google.generateAudio=true
{
  "taskType": "videoInference",
  "taskUUID": "495ff489-3a06-4576-93e0-ab9f2541798d",
  "model": "google:3@3",
  "positivePrompt": "A sweeping cinematic dive through the flooded remains of an ancient grand library beneath clear turquoise water. Towering stone shelves lean at odd angles, thousands of swollen books drift slowly upward, marble busts are wrapped in waving seagrass, and shafts of sunlight ripple through a cracked glass dome overhead. A school of silver fish parts as the camera glides forward between columns carved with faded maps and constellations. Loose pages spin in the current, a brass globe rests half buried in sand, and tiny air bubbles trail past the lens. Midway through the shot, a giant sea turtle crosses the hall, stirring sediment into glowing golden haze. End on a wide reveal of the entire submerged archive with broken staircases, collapsed balconies, and distant whale-song ambience. Natural underwater acoustics, creaking stone, soft currents, rustling paper, graceful cinematic realism, high detail, volumetric light, atmospheric depth.",
  "width": 1920,
  "height": 1080,
  "duration": 8,
  "seed": 17459,
  "providerSettings": {
    "google": {
      "enhancePrompt": true,
      "generateAudio": true
    }
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "495ff489-3a06-4576-93e0-ab9f2541798d",
  "videoUUID": "30800434-15be-44ca-b6ae-959d8edc3702",
  "videoURL": "https://vm.runware.ai/video/os/a14d18/ws/5/vi/30800434-15be-44ca-b6ae-959d8edc3702.mp4",
  "seed": 17459,
  "cost": 1.2
}
Image to Video

Salt-Flat Mirror Caravan

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'google:3@3',
  positivePrompt: 'Using the provided first-frame image as the opening shot, create a cinematic sequence across a reflective salt flat at sunrise. The caravan advances slowly toward camera-left while ripples spread through the thin water layer, banners flutter in gusts, dangling metal charms clink softly, and the animals leave delicate wakes in the mirrored surface. One traveler adjusts a scarf, another turns to look toward distant crystal outcrops catching the early light. The camera begins low and gliding, then eases into a gentle lateral tracking move that emphasizes reflections and scale. Atmosphere is serene, expansive, and slightly otherworldly, with realistic motion, natural fabric physics, subtle dust and mist, shimmering heat distortion, and rich environmental detail. Include synchronized ambient audio: soft wind, hoof splashes, harness creaks, faint chimes, no dialogue, no subtitles.',
  width: 1920,
  height: 1080,
  duration: 8,
  seed: 55844,
  providerSettings: {
    google: {
      enhancePrompt: true,
      generateAudio: true,
      resizeMode: 'crop'
    }
  },
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/5e55bec0-030a-4322-aeab-e81e064cfd39.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": "google:3@3",
            "positivePrompt": "Using the provided first-frame image as the opening shot, create a cinematic sequence across a reflective salt flat at sunrise. The caravan advances slowly toward camera-left while ripples spread through the thin water layer, banners flutter in gusts, dangling metal charms clink softly, and the animals leave delicate wakes in the mirrored surface. One traveler adjusts a scarf, another turns to look toward distant crystal outcrops catching the early light. The camera begins low and gliding, then eases into a gentle lateral tracking move that emphasizes reflections and scale. Atmosphere is serene, expansive, and slightly otherworldly, with realistic motion, natural fabric physics, subtle dust and mist, shimmering heat distortion, and rich environmental detail. Include synchronized ambient audio: soft wind, hoof splashes, harness creaks, faint chimes, no dialogue, no subtitles.",
            "width": 1920,
            "height": 1080,
            "duration": 8,
            "seed": 55844,
            "providerSettings": {
                "google": {
                    "enhancePrompt": True,
                    "generateAudio": True,
                    "resizeMode": "crop"
                }
            },
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/5e55bec0-030a-4322-aeab-e81e064cfd39.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": "05c662a9-bf1f-4e42-adf5-62f0fad90598",
      "model": "google:3@3",
      "positivePrompt": "Using the provided first-frame image as the opening shot, create a cinematic sequence across a reflective salt flat at sunrise. The caravan advances slowly toward camera-left while ripples spread through the thin water layer, banners flutter in gusts, dangling metal charms clink softly, and the animals leave delicate wakes in the mirrored surface. One traveler adjusts a scarf, another turns to look toward distant crystal outcrops catching the early light. The camera begins low and gliding, then eases into a gentle lateral tracking move that emphasizes reflections and scale. Atmosphere is serene, expansive, and slightly otherworldly, with realistic motion, natural fabric physics, subtle dust and mist, shimmering heat distortion, and rich environmental detail. Include synchronized ambient audio: soft wind, hoof splashes, harness creaks, faint chimes, no dialogue, no subtitles.",
      "width": 1920,
      "height": 1080,
      "duration": 8,
      "seed": 55844,
      "providerSettings": {
        "google": {
          "enhancePrompt": true,
          "generateAudio": true,
          "resizeMode": "crop"
        }
      },
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/5e55bec0-030a-4322-aeab-e81e064cfd39.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run google:3@3 \
  positivePrompt="Using the provided first-frame image as the opening shot, create a cinematic sequence across a reflective salt flat at sunrise. The caravan advances slowly toward camera-left while ripples spread through the thin water layer, banners flutter in gusts, dangling metal charms clink softly, and the animals leave delicate wakes in the mirrored surface. One traveler adjusts a scarf, another turns to look toward distant crystal outcrops catching the early light. The camera begins low and gliding, then eases into a gentle lateral tracking move that emphasizes reflections and scale. Atmosphere is serene, expansive, and slightly otherworldly, with realistic motion, natural fabric physics, subtle dust and mist, shimmering heat distortion, and rich environmental detail. Include synchronized ambient audio: soft wind, hoof splashes, harness creaks, faint chimes, no dialogue, no subtitles." \
  width=1920 \
  height=1080 \
  duration=8 \
  seed=55844 \
  providerSettings.google.enhancePrompt=true \
  providerSettings.google.generateAudio=true \
  providerSettings.google.resizeMode=crop \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/5e55bec0-030a-4322-aeab-e81e064cfd39.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "05c662a9-bf1f-4e42-adf5-62f0fad90598",
  "model": "google:3@3",
  "positivePrompt": "Using the provided first-frame image as the opening shot, create a cinematic sequence across a reflective salt flat at sunrise. The caravan advances slowly toward camera-left while ripples spread through the thin water layer, banners flutter in gusts, dangling metal charms clink softly, and the animals leave delicate wakes in the mirrored surface. One traveler adjusts a scarf, another turns to look toward distant crystal outcrops catching the early light. The camera begins low and gliding, then eases into a gentle lateral tracking move that emphasizes reflections and scale. Atmosphere is serene, expansive, and slightly otherworldly, with realistic motion, natural fabric physics, subtle dust and mist, shimmering heat distortion, and rich environmental detail. Include synchronized ambient audio: soft wind, hoof splashes, harness creaks, faint chimes, no dialogue, no subtitles.",
  "width": 1920,
  "height": 1080,
  "duration": 8,
  "seed": 55844,
  "providerSettings": {
    "google": {
      "enhancePrompt": true,
      "generateAudio": true,
      "resizeMode": "crop"
    }
  },
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/5e55bec0-030a-4322-aeab-e81e064cfd39.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "05c662a9-bf1f-4e42-adf5-62f0fad90598",
  "videoUUID": "e6495281-fa8a-4bc7-9d97-709a44752a69",
  "videoURL": "https://vm.runware.ai/video/os/a13d12/ws/5/vi/e6495281-fa8a-4bc7-9d97-709a44752a69.mp4",
  "seed": 55844,
  "cost": 1.2
}