MODEL IDgoogle:gemini@omni-flash-1.1
live

Gemini Omni Flash 1.1

Google
by Google

Gemini Omni Flash 1.1 is Google's updated multimodal video generation and editing model in the Gemini Omni family. It generates native synchronized audio from the prompt, and expands the original Omni Flash workflow with additional 1080p and 4K output modes, a 360p draft mode, scene extension in 3 to 10 second increments up to 30 seconds total, start-to-end frame interpolation for fluid transitions, and reference-to-video generation guided by both images and short video clips. It is built for teams that need stronger continuity, higher-resolution delivery, and more controllable multi-input video creation than the first Omni Flash release.

Gemini Omni Flash 1.1
text-to-video

Wildfire Meteorologist Video Headshot

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:gemini@omni-flash-1.1',
  positivePrompt: 'Create a premium moving professional headshot of a 48-year-old female wildfire incident meteorologist for an emergency-management conference speaker profile. Landscape composition, chest-up framing, subject positioned slightly left of center with clean negative space on the right. She has sun-weathered olive skin, dark brown eyes, a few natural smile lines, and charcoal-black hair with silver strands tied into a practical low bun. She wears a slate-blue field shirt beneath a simple dark utility jacket, with no logos, badges, lettering, or jewelry. Her expression is calm, highly competent, and quietly reassuring. Apply subtle high-end portrait retouching: balanced skin tone, softened temporary redness and under-eye fatigue, controlled shine, gently refined stray hairs, bright clear eyes, and natural tooth color while preserving pores, freckles, fine lines, facial structure, and realistic skin texture. Avoid plastic skin, glamour makeup, facial reshaping, or excessive sharpening.\n\nSet the portrait inside a wildfire operations trailer rendered as a soft, non-distracting background: muted weather maps and warm practical lights reduced to creamy bokeh, with no readable text. Use refined editorial lighting—a large cool daylight key from camera left, soft neutral fill, and a narrow warm amber rim suggesting late-afternoon firelight without making the scene dramatic or dangerous. Palette: smoke blue, charcoal, soft amber, and natural skin tones. Shallow depth of field, crisp focus on both eyes, realistic 85mm portrait-lens character.\n\nOver six seconds, keep the camera locked and the identity completely consistent. The subject breathes naturally, makes one subtle blink, shifts her gaze a fraction toward the lens, and settles into a restrained, confident half-smile. Only minimal hair and fabric movement. No speaking, exaggerated acting, camera shake, zoom, cuts, transitions, captions, graphics, logos, UI, or watermarks. The final result should feel like a meticulously retouched executive headshot brought gently to life, credible for a conference website, press kit, or professional profile.',
  width: 1920,
  height: 1080,
  duration: 6
})
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:gemini@omni-flash-1.1",
            "positivePrompt": "Create a premium moving professional headshot of a 48-year-old female wildfire incident meteorologist for an emergency-management conference speaker profile. Landscape composition, chest-up framing, subject positioned slightly left of center with clean negative space on the right. She has sun-weathered olive skin, dark brown eyes, a few natural smile lines, and charcoal-black hair with silver strands tied into a practical low bun. She wears a slate-blue field shirt beneath a simple dark utility jacket, with no logos, badges, lettering, or jewelry. Her expression is calm, highly competent, and quietly reassuring. Apply subtle high-end portrait retouching: balanced skin tone, softened temporary redness and under-eye fatigue, controlled shine, gently refined stray hairs, bright clear eyes, and natural tooth color while preserving pores, freckles, fine lines, facial structure, and realistic skin texture. Avoid plastic skin, glamour makeup, facial reshaping, or excessive sharpening.\n\nSet the portrait inside a wildfire operations trailer rendered as a soft, non-distracting background: muted weather maps and warm practical lights reduced to creamy bokeh, with no readable text. Use refined editorial lighting—a large cool daylight key from camera left, soft neutral fill, and a narrow warm amber rim suggesting late-afternoon firelight without making the scene dramatic or dangerous. Palette: smoke blue, charcoal, soft amber, and natural skin tones. Shallow depth of field, crisp focus on both eyes, realistic 85mm portrait-lens character.\n\nOver six seconds, keep the camera locked and the identity completely consistent. The subject breathes naturally, makes one subtle blink, shifts her gaze a fraction toward the lens, and settles into a restrained, confident half-smile. Only minimal hair and fabric movement. No speaking, exaggerated acting, camera shake, zoom, cuts, transitions, captions, graphics, logos, UI, or watermarks. The final result should feel like a meticulously retouched executive headshot brought gently to life, credible for a conference website, press kit, or professional profile.",
            "width": 1920,
            "height": 1080,
            "duration": 6
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "f9e1a7d2-7ec0-4319-8765-3a414679a42a",
      "model": "google:gemini@omni-flash-1.1",
      "positivePrompt": "Create a premium moving professional headshot of a 48-year-old female wildfire incident meteorologist for an emergency-management conference speaker profile. Landscape composition, chest-up framing, subject positioned slightly left of center with clean negative space on the right. She has sun-weathered olive skin, dark brown eyes, a few natural smile lines, and charcoal-black hair with silver strands tied into a practical low bun. She wears a slate-blue field shirt beneath a simple dark utility jacket, with no logos, badges, lettering, or jewelry. Her expression is calm, highly competent, and quietly reassuring. Apply subtle high-end portrait retouching: balanced skin tone, softened temporary redness and under-eye fatigue, controlled shine, gently refined stray hairs, bright clear eyes, and natural tooth color while preserving pores, freckles, fine lines, facial structure, and realistic skin texture. Avoid plastic skin, glamour makeup, facial reshaping, or excessive sharpening.\n\nSet the portrait inside a wildfire operations trailer rendered as a soft, non-distracting background: muted weather maps and warm practical lights reduced to creamy bokeh, with no readable text. Use refined editorial lighting—a large cool daylight key from camera left, soft neutral fill, and a narrow warm amber rim suggesting late-afternoon firelight without making the scene dramatic or dangerous. Palette: smoke blue, charcoal, soft amber, and natural skin tones. Shallow depth of field, crisp focus on both eyes, realistic 85mm portrait-lens character.\n\nOver six seconds, keep the camera locked and the identity completely consistent. The subject breathes naturally, makes one subtle blink, shifts her gaze a fraction toward the lens, and settles into a restrained, confident half-smile. Only minimal hair and fabric movement. No speaking, exaggerated acting, camera shake, zoom, cuts, transitions, captions, graphics, logos, UI, or watermarks. The final result should feel like a meticulously retouched executive headshot brought gently to life, credible for a conference website, press kit, or professional profile.",
      "width": 1920,
      "height": 1080,
      "duration": 6
    }
  ]'
runware run google:gemini@omni-flash-1.1 \
  positivePrompt="Create a premium moving professional headshot of a 48-year-old female wildfire incident meteorologist for an emergency-management conference speaker profile. Landscape composition, chest-up framing, subject positioned slightly left of center with clean negative space on the right. She has sun-weathered olive skin, dark brown eyes, a few natural smile lines, and charcoal-black hair with silver strands tied into a practical low bun. She wears a slate-blue field shirt beneath a simple dark utility jacket, with no logos, badges, lettering, or jewelry. Her expression is calm, highly competent, and quietly reassuring. Apply subtle high-end portrait retouching: balanced skin tone, softened temporary redness and under-eye fatigue, controlled shine, gently refined stray hairs, bright clear eyes, and natural tooth color while preserving pores, freckles, fine lines, facial structure, and realistic skin texture. Avoid plastic skin, glamour makeup, facial reshaping, or excessive sharpening.

Set the portrait inside a wildfire operations trailer rendered as a soft, non-distracting background: muted weather maps and warm practical lights reduced to creamy bokeh, with no readable text. Use refined editorial lighting—a large cool daylight key from camera left, soft neutral fill, and a narrow warm amber rim suggesting late-afternoon firelight without making the scene dramatic or dangerous. Palette: smoke blue, charcoal, soft amber, and natural skin tones. Shallow depth of field, crisp focus on both eyes, realistic 85mm portrait-lens character.

Over six seconds, keep the camera locked and the identity completely consistent. The subject breathes naturally, makes one subtle blink, shifts her gaze a fraction toward the lens, and settles into a restrained, confident half-smile. Only minimal hair and fabric movement. No speaking, exaggerated acting, camera shake, zoom, cuts, transitions, captions, graphics, logos, UI, or watermarks. The final result should feel like a meticulously retouched executive headshot brought gently to life, credible for a conference website, press kit, or professional profile." \
  width=1920 \
  height=1080 \
  duration=6
{
  "taskType": "videoInference",
  "taskUUID": "f9e1a7d2-7ec0-4319-8765-3a414679a42a",
  "model": "google:gemini@omni-flash-1.1",
  "positivePrompt": "Create a premium moving professional headshot of a 48-year-old female wildfire incident meteorologist for an emergency-management conference speaker profile. Landscape composition, chest-up framing, subject positioned slightly left of center with clean negative space on the right. She has sun-weathered olive skin, dark brown eyes, a few natural smile lines, and charcoal-black hair with silver strands tied into a practical low bun. She wears a slate-blue field shirt beneath a simple dark utility jacket, with no logos, badges, lettering, or jewelry. Her expression is calm, highly competent, and quietly reassuring. Apply subtle high-end portrait retouching: balanced skin tone, softened temporary redness and under-eye fatigue, controlled shine, gently refined stray hairs, bright clear eyes, and natural tooth color while preserving pores, freckles, fine lines, facial structure, and realistic skin texture. Avoid plastic skin, glamour makeup, facial reshaping, or excessive sharpening.\n\nSet the portrait inside a wildfire operations trailer rendered as a soft, non-distracting background: muted weather maps and warm practical lights reduced to creamy bokeh, with no readable text. Use refined editorial lighting—a large cool daylight key from camera left, soft neutral fill, and a narrow warm amber rim suggesting late-afternoon firelight without making the scene dramatic or dangerous. Palette: smoke blue, charcoal, soft amber, and natural skin tones. Shallow depth of field, crisp focus on both eyes, realistic 85mm portrait-lens character.\n\nOver six seconds, keep the camera locked and the identity completely consistent. The subject breathes naturally, makes one subtle blink, shifts her gaze a fraction toward the lens, and settles into a restrained, confident half-smile. Only minimal hair and fabric movement. No speaking, exaggerated acting, camera shake, zoom, cuts, transitions, captions, graphics, logos, UI, or watermarks. The final result should feel like a meticulously retouched executive headshot brought gently to life, credible for a conference website, press kit, or professional profile.",
  "width": 1920,
  "height": 1080,
  "duration": 6
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "f9e1a7d2-7ec0-4319-8765-3a414679a42a",
  "videoUUID": "4fcffdc1-71c5-4211-b3e2-34d522632349",
  "videoURL": "https://vm.runware.ai/video/os/a02d21/ws/5/vi/4fcffdc1-71c5-4211-b3e2-34d522632349.mp4",
  "cost": 0.903048,
  "outputs": {
    "videoId": "video-881f22a4-85f1-4c03-88a7-54b58b11fe5f"
  }
}
first-frame

Manuscript Scanner Product Demo

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:gemini@omni-flash-1.1',
  positivePrompt: 'Create a polished museum-equipment product demonstration that begins exactly from the supplied opening frame. In one continuous, stable close-up shot, the conservator slowly guides the handheld multispectral scanner from left to right above the antique manuscript while maintaining a constant height. A narrow cyan scanning band travels directly beneath the device. As it passes, previously invisible cartographic details emerge naturally on the parchment: delicate coastline contours, compass construction lines, and faded handwritten route marks become legible in dark sepia and subtle false-color traces. Keep the revealed details anchored precisely to the paper with no floating graphics or app interface. Include small realistic motions: controlled gloved fingers, a slight flex in the scanner cable, drifting dust motes, and gentle reflections moving across the scanner housing. The camera makes a very subtle forward push to emphasize the before-and-after boundary between the untouched faded area and the newly revealed section. End with the scanner near the right side of the page and most of the hidden map exposed. Premium technical-explainer cinematography, credible museum conservation workflow, warm archival laboratory lighting contrasted with restrained cyan illumination, physically accurate hands and equipment, smooth deliberate motion, consistent product geometry, no cuts, no logos, no captions, no UI, no extra tools entering frame.',
  resolution: '720p',
  duration: 5,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/9a15c3fe-3aa4-49da-bed1-e5e473ca8bf1.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:gemini@omni-flash-1.1",
            "positivePrompt": "Create a polished museum-equipment product demonstration that begins exactly from the supplied opening frame. In one continuous, stable close-up shot, the conservator slowly guides the handheld multispectral scanner from left to right above the antique manuscript while maintaining a constant height. A narrow cyan scanning band travels directly beneath the device. As it passes, previously invisible cartographic details emerge naturally on the parchment: delicate coastline contours, compass construction lines, and faded handwritten route marks become legible in dark sepia and subtle false-color traces. Keep the revealed details anchored precisely to the paper with no floating graphics or app interface. Include small realistic motions: controlled gloved fingers, a slight flex in the scanner cable, drifting dust motes, and gentle reflections moving across the scanner housing. The camera makes a very subtle forward push to emphasize the before-and-after boundary between the untouched faded area and the newly revealed section. End with the scanner near the right side of the page and most of the hidden map exposed. Premium technical-explainer cinematography, credible museum conservation workflow, warm archival laboratory lighting contrasted with restrained cyan illumination, physically accurate hands and equipment, smooth deliberate motion, consistent product geometry, no cuts, no logos, no captions, no UI, no extra tools entering frame.",
            "resolution": "720p",
            "duration": 5,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/9a15c3fe-3aa4-49da-bed1-e5e473ca8bf1.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": "be265480-a10e-4531-bf54-a42d78fba4e3",
      "model": "google:gemini@omni-flash-1.1",
      "positivePrompt": "Create a polished museum-equipment product demonstration that begins exactly from the supplied opening frame. In one continuous, stable close-up shot, the conservator slowly guides the handheld multispectral scanner from left to right above the antique manuscript while maintaining a constant height. A narrow cyan scanning band travels directly beneath the device. As it passes, previously invisible cartographic details emerge naturally on the parchment: delicate coastline contours, compass construction lines, and faded handwritten route marks become legible in dark sepia and subtle false-color traces. Keep the revealed details anchored precisely to the paper with no floating graphics or app interface. Include small realistic motions: controlled gloved fingers, a slight flex in the scanner cable, drifting dust motes, and gentle reflections moving across the scanner housing. The camera makes a very subtle forward push to emphasize the before-and-after boundary between the untouched faded area and the newly revealed section. End with the scanner near the right side of the page and most of the hidden map exposed. Premium technical-explainer cinematography, credible museum conservation workflow, warm archival laboratory lighting contrasted with restrained cyan illumination, physically accurate hands and equipment, smooth deliberate motion, consistent product geometry, no cuts, no logos, no captions, no UI, no extra tools entering frame.",
      "resolution": "720p",
      "duration": 5,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/9a15c3fe-3aa4-49da-bed1-e5e473ca8bf1.jpg",
            "frame": "first"
          }
        ]
      }
    }
  ]'
runware run google:gemini@omni-flash-1.1 \
  positivePrompt="Create a polished museum-equipment product demonstration that begins exactly from the supplied opening frame. In one continuous, stable close-up shot, the conservator slowly guides the handheld multispectral scanner from left to right above the antique manuscript while maintaining a constant height. A narrow cyan scanning band travels directly beneath the device. As it passes, previously invisible cartographic details emerge naturally on the parchment: delicate coastline contours, compass construction lines, and faded handwritten route marks become legible in dark sepia and subtle false-color traces. Keep the revealed details anchored precisely to the paper with no floating graphics or app interface. Include small realistic motions: controlled gloved fingers, a slight flex in the scanner cable, drifting dust motes, and gentle reflections moving across the scanner housing. The camera makes a very subtle forward push to emphasize the before-and-after boundary between the untouched faded area and the newly revealed section. End with the scanner near the right side of the page and most of the hidden map exposed. Premium technical-explainer cinematography, credible museum conservation workflow, warm archival laboratory lighting contrasted with restrained cyan illumination, physically accurate hands and equipment, smooth deliberate motion, consistent product geometry, no cuts, no logos, no captions, no UI, no extra tools entering frame." \
  resolution=720p \
  duration=5 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/9a15c3fe-3aa4-49da-bed1-e5e473ca8bf1.jpg \
  inputs.frameImages.0.frame=first
{
  "taskType": "videoInference",
  "taskUUID": "be265480-a10e-4531-bf54-a42d78fba4e3",
  "model": "google:gemini@omni-flash-1.1",
  "positivePrompt": "Create a polished museum-equipment product demonstration that begins exactly from the supplied opening frame. In one continuous, stable close-up shot, the conservator slowly guides the handheld multispectral scanner from left to right above the antique manuscript while maintaining a constant height. A narrow cyan scanning band travels directly beneath the device. As it passes, previously invisible cartographic details emerge naturally on the parchment: delicate coastline contours, compass construction lines, and faded handwritten route marks become legible in dark sepia and subtle false-color traces. Keep the revealed details anchored precisely to the paper with no floating graphics or app interface. Include small realistic motions: controlled gloved fingers, a slight flex in the scanner cable, drifting dust motes, and gentle reflections moving across the scanner housing. The camera makes a very subtle forward push to emphasize the before-and-after boundary between the untouched faded area and the newly revealed section. End with the scanner near the right side of the page and most of the hidden map exposed. Premium technical-explainer cinematography, credible museum conservation workflow, warm archival laboratory lighting contrasted with restrained cyan illumination, physically accurate hands and equipment, smooth deliberate motion, consistent product geometry, no cuts, no logos, no captions, no UI, no extra tools entering frame.",
  "resolution": "720p",
  "duration": 5,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/9a15c3fe-3aa4-49da-bed1-e5e473ca8bf1.jpg",
        "frame": "first"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "be265480-a10e-4531-bf54-a42d78fba4e3",
  "videoUUID": "9807f813-4da2-4072-aaba-9c249b79b13b",
  "videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/9807f813-4da2-4072-aaba-9c249b79b13b.mp4",
  "cost": 0.503358,
  "outputs": {
    "videoId": "video-dc5ee8c1-f66d-4f52-a23d-d787f3c50fa3"
  }
}
first-last-frame

Theatrical Wig Artisan Headshot Retouch

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:gemini@omni-flash-1.1',
  positivePrompt: 'Create a coherent eight-second portrait-retouch reveal between the supplied first and last frames. Keep the camera completely locked and preserve the woman’s exact identity, facial proportions, age, glasses, expression, eye line, pose, clothing, crop and background geometry throughout. Begin as the honest raw camera capture. Let the enhancement develop gradually and professionally, as though a skilled editorial retoucher is refining one photograph in place: mixed fluorescent color cast settles into balanced warm copper and plum tones; exposure and skin tone become even; forehead shine and under-eye shadow reduce subtly; temporary blemishes disappear while real pores, fine lines and natural skin texture remain; flyaway hairs become tidier; glare on the tortoiseshell glasses diminishes; eye detail gains restrained clarity; plum jacket texture becomes richer; the distracting atelier highlight fades and the wig blocks fall into cleaner soft focus. Use a gentle, nearly imperceptible warm light sweep across the portrait to motivate the transition, with only natural micro-movements such as one soft blink and quiet breathing. The result must feel like premium, age-respectful headshot enhancement for a veteran theatrical professional, never a beauty filter. No face morphing, no skin plasticity, no body movement, no camera movement, no added objects, no changing hairstyle or wardrobe, no text.',
  resolution: '1080p',
  duration: 8,
  inputs: {
    frameImages: [
      {
        image: 'https://assets.runware.ai/assets/inputs/4fc7bace-d5db-4ef1-a75a-4fea295d8d47.jpg',
        frame: 'first'
      },
      {
        image: 'https://assets.runware.ai/assets/inputs/7854f31f-ca05-4617-9370-cddaa3bc6178.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:gemini@omni-flash-1.1",
            "positivePrompt": "Create a coherent eight-second portrait-retouch reveal between the supplied first and last frames. Keep the camera completely locked and preserve the woman’s exact identity, facial proportions, age, glasses, expression, eye line, pose, clothing, crop and background geometry throughout. Begin as the honest raw camera capture. Let the enhancement develop gradually and professionally, as though a skilled editorial retoucher is refining one photograph in place: mixed fluorescent color cast settles into balanced warm copper and plum tones; exposure and skin tone become even; forehead shine and under-eye shadow reduce subtly; temporary blemishes disappear while real pores, fine lines and natural skin texture remain; flyaway hairs become tidier; glare on the tortoiseshell glasses diminishes; eye detail gains restrained clarity; plum jacket texture becomes richer; the distracting atelier highlight fades and the wig blocks fall into cleaner soft focus. Use a gentle, nearly imperceptible warm light sweep across the portrait to motivate the transition, with only natural micro-movements such as one soft blink and quiet breathing. The result must feel like premium, age-respectful headshot enhancement for a veteran theatrical professional, never a beauty filter. No face morphing, no skin plasticity, no body movement, no camera movement, no added objects, no changing hairstyle or wardrobe, no text.",
            "resolution": "1080p",
            "duration": 8,
            "inputs": {
                "frameImages": [
                    {
                        "image": "https://assets.runware.ai/assets/inputs/4fc7bace-d5db-4ef1-a75a-4fea295d8d47.jpg",
                        "frame": "first"
                    },
                    {
                        "image": "https://assets.runware.ai/assets/inputs/7854f31f-ca05-4617-9370-cddaa3bc6178.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": "35d80eb1-f921-41df-9d6f-787357ba8ab8",
      "model": "google:gemini@omni-flash-1.1",
      "positivePrompt": "Create a coherent eight-second portrait-retouch reveal between the supplied first and last frames. Keep the camera completely locked and preserve the woman’s exact identity, facial proportions, age, glasses, expression, eye line, pose, clothing, crop and background geometry throughout. Begin as the honest raw camera capture. Let the enhancement develop gradually and professionally, as though a skilled editorial retoucher is refining one photograph in place: mixed fluorescent color cast settles into balanced warm copper and plum tones; exposure and skin tone become even; forehead shine and under-eye shadow reduce subtly; temporary blemishes disappear while real pores, fine lines and natural skin texture remain; flyaway hairs become tidier; glare on the tortoiseshell glasses diminishes; eye detail gains restrained clarity; plum jacket texture becomes richer; the distracting atelier highlight fades and the wig blocks fall into cleaner soft focus. Use a gentle, nearly imperceptible warm light sweep across the portrait to motivate the transition, with only natural micro-movements such as one soft blink and quiet breathing. The result must feel like premium, age-respectful headshot enhancement for a veteran theatrical professional, never a beauty filter. No face morphing, no skin plasticity, no body movement, no camera movement, no added objects, no changing hairstyle or wardrobe, no text.",
      "resolution": "1080p",
      "duration": 8,
      "inputs": {
        "frameImages": [
          {
            "image": "https://assets.runware.ai/assets/inputs/4fc7bace-d5db-4ef1-a75a-4fea295d8d47.jpg",
            "frame": "first"
          },
          {
            "image": "https://assets.runware.ai/assets/inputs/7854f31f-ca05-4617-9370-cddaa3bc6178.jpg",
            "frame": "last"
          }
        ]
      }
    }
  ]'
runware run google:gemini@omni-flash-1.1 \
  positivePrompt="Create a coherent eight-second portrait-retouch reveal between the supplied first and last frames. Keep the camera completely locked and preserve the woman’s exact identity, facial proportions, age, glasses, expression, eye line, pose, clothing, crop and background geometry throughout. Begin as the honest raw camera capture. Let the enhancement develop gradually and professionally, as though a skilled editorial retoucher is refining one photograph in place: mixed fluorescent color cast settles into balanced warm copper and plum tones; exposure and skin tone become even; forehead shine and under-eye shadow reduce subtly; temporary blemishes disappear while real pores, fine lines and natural skin texture remain; flyaway hairs become tidier; glare on the tortoiseshell glasses diminishes; eye detail gains restrained clarity; plum jacket texture becomes richer; the distracting atelier highlight fades and the wig blocks fall into cleaner soft focus. Use a gentle, nearly imperceptible warm light sweep across the portrait to motivate the transition, with only natural micro-movements such as one soft blink and quiet breathing. The result must feel like premium, age-respectful headshot enhancement for a veteran theatrical professional, never a beauty filter. No face morphing, no skin plasticity, no body movement, no camera movement, no added objects, no changing hairstyle or wardrobe, no text." \
  resolution=1080p \
  duration=8 \
  inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/4fc7bace-d5db-4ef1-a75a-4fea295d8d47.jpg \
  inputs.frameImages.0.frame=first \
  inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/7854f31f-ca05-4617-9370-cddaa3bc6178.jpg \
  inputs.frameImages.1.frame=last
{
  "taskType": "videoInference",
  "taskUUID": "35d80eb1-f921-41df-9d6f-787357ba8ab8",
  "model": "google:gemini@omni-flash-1.1",
  "positivePrompt": "Create a coherent eight-second portrait-retouch reveal between the supplied first and last frames. Keep the camera completely locked and preserve the woman’s exact identity, facial proportions, age, glasses, expression, eye line, pose, clothing, crop and background geometry throughout. Begin as the honest raw camera capture. Let the enhancement develop gradually and professionally, as though a skilled editorial retoucher is refining one photograph in place: mixed fluorescent color cast settles into balanced warm copper and plum tones; exposure and skin tone become even; forehead shine and under-eye shadow reduce subtly; temporary blemishes disappear while real pores, fine lines and natural skin texture remain; flyaway hairs become tidier; glare on the tortoiseshell glasses diminishes; eye detail gains restrained clarity; plum jacket texture becomes richer; the distracting atelier highlight fades and the wig blocks fall into cleaner soft focus. Use a gentle, nearly imperceptible warm light sweep across the portrait to motivate the transition, with only natural micro-movements such as one soft blink and quiet breathing. The result must feel like premium, age-respectful headshot enhancement for a veteran theatrical professional, never a beauty filter. No face morphing, no skin plasticity, no body movement, no camera movement, no added objects, no changing hairstyle or wardrobe, no text.",
  "resolution": "1080p",
  "duration": 8,
  "inputs": {
    "frameImages": [
      {
        "image": "https://assets.runware.ai/assets/inputs/4fc7bace-d5db-4ef1-a75a-4fea295d8d47.jpg",
        "frame": "first"
      },
      {
        "image": "https://assets.runware.ai/assets/inputs/7854f31f-ca05-4617-9370-cddaa3bc6178.jpg",
        "frame": "last"
      }
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "35d80eb1-f921-41df-9d6f-787357ba8ab8",
  "videoUUID": "803bad88-112e-4d3f-bfa2-d2ce0005da1a",
  "videoURL": "https://vm.runware.ai/video/os/a08dlim3/ws/5/vi/803bad88-112e-4d3f-bfa2-d2ce0005da1a.mp4",
  "cost": 1.203735,
  "outputs": {
    "videoId": "video-60cd3544-abe4-4157-bf87-ce2db96c151e"
  }
}
reference-to-video

Arctic Seed Vault Winter Relight

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:gemini@omni-flash-1.1',
  positivePrompt: 'Create a finished seven-second documentary establishing shot of the Arctic seed vault shown in the reference image, transformed from its snow-free midsummer setting into deep winter during polar night. Preserve the reference image\'s specific building identity and geometry: the angular concrete entrance embedded in the mountainside, facade proportions, illuminated-art panel placement, weathered surfaces, road alignment, shale slopes and fjord geography. Cover the terrain and road edges with believable accumulated snow while keeping exposed wind-scoured rock visible. Relight the entire scene with cold cobalt-blue polar twilight, soft cyan ambient snow bounce and warm restrained illumination spilling from the entrance; the decorative facade lighting should glow clearly without clipping. Add a faint violet band near the horizon, low clouds and sparse wind-driven powder moving across the foreground. Adopt the reference video\'s camera choreography rather than its building: one continuous stabilized low-altitude lateral arc from left to right, with subtle forward drift and a gentle rise, producing convincing parallax between foreground snowbanks, the vault entrance, mountain slopes and distant fjord. Maintain realistic drone inertia and a calm institutional-documentary mood. The transformation must feel fully integrated into a new winter scene, not like a filter, slideshow, endpoint interpolation or pasted building. Natural atmospheric depth, physically coherent shadows and reflections, crisp architectural detail, restrained cinematic contrast, no cuts, no time-lapse, no people, no vehicles, no added logos, captions or titles.',
  resolution: '720p',
  duration: 7,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/6a3ec3ba-a498-44c5-a1e9-f8265d7825ab.jpg'
    ],
    referenceVideos: [
      'https://assets.runware.ai/assets/inputs/9df246a6-7a5a-4e0a-9d96-03cd96615909.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:gemini@omni-flash-1.1",
            "positivePrompt": "Create a finished seven-second documentary establishing shot of the Arctic seed vault shown in the reference image, transformed from its snow-free midsummer setting into deep winter during polar night. Preserve the reference image's specific building identity and geometry: the angular concrete entrance embedded in the mountainside, facade proportions, illuminated-art panel placement, weathered surfaces, road alignment, shale slopes and fjord geography. Cover the terrain and road edges with believable accumulated snow while keeping exposed wind-scoured rock visible. Relight the entire scene with cold cobalt-blue polar twilight, soft cyan ambient snow bounce and warm restrained illumination spilling from the entrance; the decorative facade lighting should glow clearly without clipping. Add a faint violet band near the horizon, low clouds and sparse wind-driven powder moving across the foreground. Adopt the reference video's camera choreography rather than its building: one continuous stabilized low-altitude lateral arc from left to right, with subtle forward drift and a gentle rise, producing convincing parallax between foreground snowbanks, the vault entrance, mountain slopes and distant fjord. Maintain realistic drone inertia and a calm institutional-documentary mood. The transformation must feel fully integrated into a new winter scene, not like a filter, slideshow, endpoint interpolation or pasted building. Natural atmospheric depth, physically coherent shadows and reflections, crisp architectural detail, restrained cinematic contrast, no cuts, no time-lapse, no people, no vehicles, no added logos, captions or titles.",
            "resolution": "720p",
            "duration": 7,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/6a3ec3ba-a498-44c5-a1e9-f8265d7825ab.jpg"
                ],
                "referenceVideos": [
                    "https://assets.runware.ai/assets/inputs/9df246a6-7a5a-4e0a-9d96-03cd96615909.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": "c762a445-5380-4f4c-8513-42205beedc10",
      "model": "google:gemini@omni-flash-1.1",
      "positivePrompt": "Create a finished seven-second documentary establishing shot of the Arctic seed vault shown in the reference image, transformed from its snow-free midsummer setting into deep winter during polar night. Preserve the reference image's specific building identity and geometry: the angular concrete entrance embedded in the mountainside, facade proportions, illuminated-art panel placement, weathered surfaces, road alignment, shale slopes and fjord geography. Cover the terrain and road edges with believable accumulated snow while keeping exposed wind-scoured rock visible. Relight the entire scene with cold cobalt-blue polar twilight, soft cyan ambient snow bounce and warm restrained illumination spilling from the entrance; the decorative facade lighting should glow clearly without clipping. Add a faint violet band near the horizon, low clouds and sparse wind-driven powder moving across the foreground. Adopt the reference video's camera choreography rather than its building: one continuous stabilized low-altitude lateral arc from left to right, with subtle forward drift and a gentle rise, producing convincing parallax between foreground snowbanks, the vault entrance, mountain slopes and distant fjord. Maintain realistic drone inertia and a calm institutional-documentary mood. The transformation must feel fully integrated into a new winter scene, not like a filter, slideshow, endpoint interpolation or pasted building. Natural atmospheric depth, physically coherent shadows and reflections, crisp architectural detail, restrained cinematic contrast, no cuts, no time-lapse, no people, no vehicles, no added logos, captions or titles.",
      "resolution": "720p",
      "duration": 7,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/6a3ec3ba-a498-44c5-a1e9-f8265d7825ab.jpg"
        ],
        "referenceVideos": [
          "https://assets.runware.ai/assets/inputs/9df246a6-7a5a-4e0a-9d96-03cd96615909.mp4"
        ]
      }
    }
  ]'
runware run google:gemini@omni-flash-1.1 \
  positivePrompt="Create a finished seven-second documentary establishing shot of the Arctic seed vault shown in the reference image, transformed from its snow-free midsummer setting into deep winter during polar night. Preserve the reference image's specific building identity and geometry: the angular concrete entrance embedded in the mountainside, facade proportions, illuminated-art panel placement, weathered surfaces, road alignment, shale slopes and fjord geography. Cover the terrain and road edges with believable accumulated snow while keeping exposed wind-scoured rock visible. Relight the entire scene with cold cobalt-blue polar twilight, soft cyan ambient snow bounce and warm restrained illumination spilling from the entrance; the decorative facade lighting should glow clearly without clipping. Add a faint violet band near the horizon, low clouds and sparse wind-driven powder moving across the foreground. Adopt the reference video's camera choreography rather than its building: one continuous stabilized low-altitude lateral arc from left to right, with subtle forward drift and a gentle rise, producing convincing parallax between foreground snowbanks, the vault entrance, mountain slopes and distant fjord. Maintain realistic drone inertia and a calm institutional-documentary mood. The transformation must feel fully integrated into a new winter scene, not like a filter, slideshow, endpoint interpolation or pasted building. Natural atmospheric depth, physically coherent shadows and reflections, crisp architectural detail, restrained cinematic contrast, no cuts, no time-lapse, no people, no vehicles, no added logos, captions or titles." \
  resolution=720p \
  duration=7 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/6a3ec3ba-a498-44c5-a1e9-f8265d7825ab.jpg \
  inputs.referenceVideos.0=https://assets.runware.ai/assets/inputs/9df246a6-7a5a-4e0a-9d96-03cd96615909.mp4
{
  "taskType": "videoInference",
  "taskUUID": "c762a445-5380-4f4c-8513-42205beedc10",
  "model": "google:gemini@omni-flash-1.1",
  "positivePrompt": "Create a finished seven-second documentary establishing shot of the Arctic seed vault shown in the reference image, transformed from its snow-free midsummer setting into deep winter during polar night. Preserve the reference image's specific building identity and geometry: the angular concrete entrance embedded in the mountainside, facade proportions, illuminated-art panel placement, weathered surfaces, road alignment, shale slopes and fjord geography. Cover the terrain and road edges with believable accumulated snow while keeping exposed wind-scoured rock visible. Relight the entire scene with cold cobalt-blue polar twilight, soft cyan ambient snow bounce and warm restrained illumination spilling from the entrance; the decorative facade lighting should glow clearly without clipping. Add a faint violet band near the horizon, low clouds and sparse wind-driven powder moving across the foreground. Adopt the reference video's camera choreography rather than its building: one continuous stabilized low-altitude lateral arc from left to right, with subtle forward drift and a gentle rise, producing convincing parallax between foreground snowbanks, the vault entrance, mountain slopes and distant fjord. Maintain realistic drone inertia and a calm institutional-documentary mood. The transformation must feel fully integrated into a new winter scene, not like a filter, slideshow, endpoint interpolation or pasted building. Natural atmospheric depth, physically coherent shadows and reflections, crisp architectural detail, restrained cinematic contrast, no cuts, no time-lapse, no people, no vehicles, no added logos, captions or titles.",
  "resolution": "720p",
  "duration": 7,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/6a3ec3ba-a498-44c5-a1e9-f8265d7825ab.jpg"
    ],
    "referenceVideos": [
      "https://assets.runware.ai/assets/inputs/9df246a6-7a5a-4e0a-9d96-03cd96615909.mp4"
    ]
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "c762a445-5380-4f4c-8513-42205beedc10",
  "videoUUID": "69ce8889-5312-4daa-a54b-181c93bd4187",
  "videoURL": "https://vm.runware.ai/video/os/a08dlim3/ws/5/vi/69ce8889-5312-4daa-a54b-181c93bd4187.mp4",
  "cost": 0.7289635,
  "outputs": {
    "videoId": "video-79f63862-9916-4e08-b3e0-628eb6613ab1"
  }
}
video-edit

Luxury Apiary Suit Showcase 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: 'google:gemini@omni-flash-1.1',
  positivePrompt: 'Edit the supplied studio footage into a polished luxury fashion showcase for professional apiary apparel. Preserve the model, exact beekeeping suit design, mesh veil, gloves, boots, body proportions, original walking-and-turning choreography, camera movement, garment continuity, and natural fabric physics throughout. Replace the plain cyclorama with a monumental architectural set built from translucent amber-glass honeycomb panels over a deep matte-black floor. As the model walks, warm light should travel sequentially through the hexagonal cells behind them, creating a clear visual progression; during the final three-quarter turn, reveal a sculptural wall of softly glowing beeswax textures. Add restrained shafts of golden light, precise reflections, subtle atmospheric pollen motes, and only a few distant bees drifting safely behind the model. Use directional amber rim light and soft neutral key light so the ivory suit, stitching, pockets, veil structure, and protective construction remain the unmistakable focus. Premium editorial cinematography, controlled industrial elegance, rich amber, ivory, and black palette, realistic materials, coherent shadows and reflections, smooth motion, sharp product detail, uncluttered widescreen composition. No captions, logos, labels, borders, or interface elements.',
  resolution: '1080p',
  duration: 6,
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/d071ac00-5adc-44ca-8a74-68626514428f.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:gemini@omni-flash-1.1",
            "positivePrompt": "Edit the supplied studio footage into a polished luxury fashion showcase for professional apiary apparel. Preserve the model, exact beekeeping suit design, mesh veil, gloves, boots, body proportions, original walking-and-turning choreography, camera movement, garment continuity, and natural fabric physics throughout. Replace the plain cyclorama with a monumental architectural set built from translucent amber-glass honeycomb panels over a deep matte-black floor. As the model walks, warm light should travel sequentially through the hexagonal cells behind them, creating a clear visual progression; during the final three-quarter turn, reveal a sculptural wall of softly glowing beeswax textures. Add restrained shafts of golden light, precise reflections, subtle atmospheric pollen motes, and only a few distant bees drifting safely behind the model. Use directional amber rim light and soft neutral key light so the ivory suit, stitching, pockets, veil structure, and protective construction remain the unmistakable focus. Premium editorial cinematography, controlled industrial elegance, rich amber, ivory, and black palette, realistic materials, coherent shadows and reflections, smooth motion, sharp product detail, uncluttered widescreen composition. No captions, logos, labels, borders, or interface elements.",
            "resolution": "1080p",
            "duration": 6,
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/d071ac00-5adc-44ca-8a74-68626514428f.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": "398411c3-91ab-45a5-b032-247fd32bbec4",
      "model": "google:gemini@omni-flash-1.1",
      "positivePrompt": "Edit the supplied studio footage into a polished luxury fashion showcase for professional apiary apparel. Preserve the model, exact beekeeping suit design, mesh veil, gloves, boots, body proportions, original walking-and-turning choreography, camera movement, garment continuity, and natural fabric physics throughout. Replace the plain cyclorama with a monumental architectural set built from translucent amber-glass honeycomb panels over a deep matte-black floor. As the model walks, warm light should travel sequentially through the hexagonal cells behind them, creating a clear visual progression; during the final three-quarter turn, reveal a sculptural wall of softly glowing beeswax textures. Add restrained shafts of golden light, precise reflections, subtle atmospheric pollen motes, and only a few distant bees drifting safely behind the model. Use directional amber rim light and soft neutral key light so the ivory suit, stitching, pockets, veil structure, and protective construction remain the unmistakable focus. Premium editorial cinematography, controlled industrial elegance, rich amber, ivory, and black palette, realistic materials, coherent shadows and reflections, smooth motion, sharp product detail, uncluttered widescreen composition. No captions, logos, labels, borders, or interface elements.",
      "resolution": "1080p",
      "duration": 6,
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/d071ac00-5adc-44ca-8a74-68626514428f.mp4"
      }
    }
  ]'
runware run google:gemini@omni-flash-1.1 \
  positivePrompt="Edit the supplied studio footage into a polished luxury fashion showcase for professional apiary apparel. Preserve the model, exact beekeeping suit design, mesh veil, gloves, boots, body proportions, original walking-and-turning choreography, camera movement, garment continuity, and natural fabric physics throughout. Replace the plain cyclorama with a monumental architectural set built from translucent amber-glass honeycomb panels over a deep matte-black floor. As the model walks, warm light should travel sequentially through the hexagonal cells behind them, creating a clear visual progression; during the final three-quarter turn, reveal a sculptural wall of softly glowing beeswax textures. Add restrained shafts of golden light, precise reflections, subtle atmospheric pollen motes, and only a few distant bees drifting safely behind the model. Use directional amber rim light and soft neutral key light so the ivory suit, stitching, pockets, veil structure, and protective construction remain the unmistakable focus. Premium editorial cinematography, controlled industrial elegance, rich amber, ivory, and black palette, realistic materials, coherent shadows and reflections, smooth motion, sharp product detail, uncluttered widescreen composition. No captions, logos, labels, borders, or interface elements." \
  resolution=1080p \
  duration=6 \
  inputs.video=https://assets.runware.ai/assets/inputs/d071ac00-5adc-44ca-8a74-68626514428f.mp4
{
  "taskType": "videoInference",
  "taskUUID": "398411c3-91ab-45a5-b032-247fd32bbec4",
  "model": "google:gemini@omni-flash-1.1",
  "positivePrompt": "Edit the supplied studio footage into a polished luxury fashion showcase for professional apiary apparel. Preserve the model, exact beekeeping suit design, mesh veil, gloves, boots, body proportions, original walking-and-turning choreography, camera movement, garment continuity, and natural fabric physics throughout. Replace the plain cyclorama with a monumental architectural set built from translucent amber-glass honeycomb panels over a deep matte-black floor. As the model walks, warm light should travel sequentially through the hexagonal cells behind them, creating a clear visual progression; during the final three-quarter turn, reveal a sculptural wall of softly glowing beeswax textures. Add restrained shafts of golden light, precise reflections, subtle atmospheric pollen motes, and only a few distant bees drifting safely behind the model. Use directional amber rim light and soft neutral key light so the ivory suit, stitching, pockets, veil structure, and protective construction remain the unmistakable focus. Premium editorial cinematography, controlled industrial elegance, rich amber, ivory, and black palette, realistic materials, coherent shadows and reflections, smooth motion, sharp product detail, uncluttered widescreen composition. No captions, logos, labels, borders, or interface elements.",
  "resolution": "1080p",
  "duration": 6,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/d071ac00-5adc-44ca-8a74-68626514428f.mp4"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "398411c3-91ab-45a5-b032-247fd32bbec4",
  "videoUUID": "f07ed409-3dce-4721-975d-2bc1f270a081",
  "videoURL": "https://vm.runware.ai/video/os/a05d22/ws/5/vi/f07ed409-3dce-4721-975d-2bc1f270a081.mp4",
  "cost": 1.8524685,
  "outputs": {
    "videoId": "video-9d091187-2948-42f1-8d81-895d6bda7592"
  }
}
video-extend

Sewer Robot Environment Swap

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:gemini@omni-flash-1.1',
  positivePrompt: 'The camera follows closely behind the same inspection crawler as it continues forward out of the brief darkness and into a real Victorian brick sewer beneath a city. Preserve the robot’s exact stainless-steel chassis, circular camera head, four black tires, dimensions, speed, wheel rotation, and cool-white work lights. Its beams sweep naturally across damp arched brickwork, shallow rippling water, mineral stains, iron pipe fittings, and faint drifting mist. Warm amber utility lamps farther down the tunnel contrast with the robot’s cool lights, creating a restrained teal-and-rust palette. Maintain the low wheel-height tracking angle and forward momentum from the preceding shot. Add subtle handheld vibration, realistic reflections in the water, soft lens moisture, atmospheric depth, and grounded documentary cinematography. The crawler passes beneath a dripping joint and continues deeper into the tunnel. Photorealistic municipal infrastructure footage, credible scale and physics, no people, no text, no logos, no UI.',
  resolution: '720p',
  duration: 5,
  inputs: {
    video: 'https://assets.runware.ai/assets/inputs/1917cbe5-7319-4178-bf00-b23fae28faf2.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:gemini@omni-flash-1.1",
            "positivePrompt": "The camera follows closely behind the same inspection crawler as it continues forward out of the brief darkness and into a real Victorian brick sewer beneath a city. Preserve the robot’s exact stainless-steel chassis, circular camera head, four black tires, dimensions, speed, wheel rotation, and cool-white work lights. Its beams sweep naturally across damp arched brickwork, shallow rippling water, mineral stains, iron pipe fittings, and faint drifting mist. Warm amber utility lamps farther down the tunnel contrast with the robot’s cool lights, creating a restrained teal-and-rust palette. Maintain the low wheel-height tracking angle and forward momentum from the preceding shot. Add subtle handheld vibration, realistic reflections in the water, soft lens moisture, atmospheric depth, and grounded documentary cinematography. The crawler passes beneath a dripping joint and continues deeper into the tunnel. Photorealistic municipal infrastructure footage, credible scale and physics, no people, no text, no logos, no UI.",
            "resolution": "720p",
            "duration": 5,
            "inputs": {
                "video": "https://assets.runware.ai/assets/inputs/1917cbe5-7319-4178-bf00-b23fae28faf2.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": "e875bb98-8ebd-4a6a-9f41-fb73539dc82b",
      "model": "google:gemini@omni-flash-1.1",
      "positivePrompt": "The camera follows closely behind the same inspection crawler as it continues forward out of the brief darkness and into a real Victorian brick sewer beneath a city. Preserve the robot’s exact stainless-steel chassis, circular camera head, four black tires, dimensions, speed, wheel rotation, and cool-white work lights. Its beams sweep naturally across damp arched brickwork, shallow rippling water, mineral stains, iron pipe fittings, and faint drifting mist. Warm amber utility lamps farther down the tunnel contrast with the robot’s cool lights, creating a restrained teal-and-rust palette. Maintain the low wheel-height tracking angle and forward momentum from the preceding shot. Add subtle handheld vibration, realistic reflections in the water, soft lens moisture, atmospheric depth, and grounded documentary cinematography. The crawler passes beneath a dripping joint and continues deeper into the tunnel. Photorealistic municipal infrastructure footage, credible scale and physics, no people, no text, no logos, no UI.",
      "resolution": "720p",
      "duration": 5,
      "inputs": {
        "video": "https://assets.runware.ai/assets/inputs/1917cbe5-7319-4178-bf00-b23fae28faf2.mp4"
      }
    }
  ]'
runware run google:gemini@omni-flash-1.1 \
  positivePrompt="The camera follows closely behind the same inspection crawler as it continues forward out of the brief darkness and into a real Victorian brick sewer beneath a city. Preserve the robot’s exact stainless-steel chassis, circular camera head, four black tires, dimensions, speed, wheel rotation, and cool-white work lights. Its beams sweep naturally across damp arched brickwork, shallow rippling water, mineral stains, iron pipe fittings, and faint drifting mist. Warm amber utility lamps farther down the tunnel contrast with the robot’s cool lights, creating a restrained teal-and-rust palette. Maintain the low wheel-height tracking angle and forward momentum from the preceding shot. Add subtle handheld vibration, realistic reflections in the water, soft lens moisture, atmospheric depth, and grounded documentary cinematography. The crawler passes beneath a dripping joint and continues deeper into the tunnel. Photorealistic municipal infrastructure footage, credible scale and physics, no people, no text, no logos, no UI." \
  resolution=720p \
  duration=5 \
  inputs.video=https://assets.runware.ai/assets/inputs/1917cbe5-7319-4178-bf00-b23fae28faf2.mp4
{
  "taskType": "videoInference",
  "taskUUID": "e875bb98-8ebd-4a6a-9f41-fb73539dc82b",
  "model": "google:gemini@omni-flash-1.1",
  "positivePrompt": "The camera follows closely behind the same inspection crawler as it continues forward out of the brief darkness and into a real Victorian brick sewer beneath a city. Preserve the robot’s exact stainless-steel chassis, circular camera head, four black tires, dimensions, speed, wheel rotation, and cool-white work lights. Its beams sweep naturally across damp arched brickwork, shallow rippling water, mineral stains, iron pipe fittings, and faint drifting mist. Warm amber utility lamps farther down the tunnel contrast with the robot’s cool lights, creating a restrained teal-and-rust palette. Maintain the low wheel-height tracking angle and forward momentum from the preceding shot. Add subtle handheld vibration, realistic reflections in the water, soft lens moisture, atmospheric depth, and grounded documentary cinematography. The crawler passes beneath a dripping joint and continues deeper into the tunnel. Photorealistic municipal infrastructure footage, credible scale and physics, no people, no text, no logos, no UI.",
  "resolution": "720p",
  "duration": 5,
  "inputs": {
    "video": "https://assets.runware.ai/assets/inputs/1917cbe5-7319-4178-bf00-b23fae28faf2.mp4"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "e875bb98-8ebd-4a6a-9f41-fb73539dc82b",
  "videoUUID": "cd4ee84d-a859-4f7e-a57f-bbb5cc6feed0",
  "videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/cd4ee84d-a859-4f7e-a57f-bbb5cc6feed0.mp4",
  "cost": 1.1517085,
  "outputs": {
    "videoId": "video-749bfae2-0eec-44e8-b40b-410402bcf3b5"
  }
}