P-Video-Avatar

P-Video-Avatar is a portrait-driven avatar video model that turns a single image into a speaking video using either an uploaded audio track or a generated voice from script. It is built for production avatar workflows with strong lip sync, selectable voices and languages, optional speaking-style control, seeded generation, and 720p or 1080p output for scalable talking-head video creation.
API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
scripted-photo-avatar
Indigo Dyehouse Music Video Bridge$0.219~26simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'prunaai:p-video@avatar',
positivePrompt: 'Create an intimate spoken-word music-video performance from this portrait. The vocalist looks directly into the lens and delivers the Spanish lyric with precise, natural lip synchronization. Include realistic blinking, a soft inhale before speaking, restrained facial emotion that develops from reflection into quiet resolve, and subtle organic head movement. Keep her shoulders composed and avoid exaggerated gestures. Preserve the cobalt, ochre, and ivory dyehouse palette, soft natural window light, shallow depth of field, and understated analog-film texture. Locked eye-level camera, polished cinematic realism, no captions or on-screen text.',
resolution: '720p',
speech: {
text: 'Guardo el azul en las manos; no por tristeza, sino para recordar que hasta la noche aprende a cambiar.',
voice: 'Aoede (Female)',
language: 'es'
},
inputs: {
frameImages: [
'https://assets.runware.ai/assets/inputs/c7a9a08e-58c4-48aa-875b-1b9f19256f4f.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create an intimate spoken-word music-video performance from this portrait. The vocalist looks directly into the lens and delivers the Spanish lyric with precise, natural lip synchronization. Include realistic blinking, a soft inhale before speaking, restrained facial emotion that develops from reflection into quiet resolve, and subtle organic head movement. Keep her shoulders composed and avoid exaggerated gestures. Preserve the cobalt, ochre, and ivory dyehouse palette, soft natural window light, shallow depth of field, and understated analog-film texture. Locked eye-level camera, polished cinematic realism, no captions or on-screen text.",
"resolution": "720p",
"speech": {
"text": "Guardo el azul en las manos; no por tristeza, sino para recordar que hasta la noche aprende a cambiar.",
"voice": "Aoede (Female)",
"language": "es"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/c7a9a08e-58c4-48aa-875b-1b9f19256f4f.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "9e334a80-a5cb-4965-a56e-410508f7354f",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create an intimate spoken-word music-video performance from this portrait. The vocalist looks directly into the lens and delivers the Spanish lyric with precise, natural lip synchronization. Include realistic blinking, a soft inhale before speaking, restrained facial emotion that develops from reflection into quiet resolve, and subtle organic head movement. Keep her shoulders composed and avoid exaggerated gestures. Preserve the cobalt, ochre, and ivory dyehouse palette, soft natural window light, shallow depth of field, and understated analog-film texture. Locked eye-level camera, polished cinematic realism, no captions or on-screen text.",
"resolution": "720p",
"speech": {
"text": "Guardo el azul en las manos; no por tristeza, sino para recordar que hasta la noche aprende a cambiar.",
"voice": "Aoede (Female)",
"language": "es"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/c7a9a08e-58c4-48aa-875b-1b9f19256f4f.jpg"
]
}
}
]'runware run prunaai:p-video@avatar \
positivePrompt="Create an intimate spoken-word music-video performance from this portrait. The vocalist looks directly into the lens and delivers the Spanish lyric with precise, natural lip synchronization. Include realistic blinking, a soft inhale before speaking, restrained facial emotion that develops from reflection into quiet resolve, and subtle organic head movement. Keep her shoulders composed and avoid exaggerated gestures. Preserve the cobalt, ochre, and ivory dyehouse palette, soft natural window light, shallow depth of field, and understated analog-film texture. Locked eye-level camera, polished cinematic realism, no captions or on-screen text." \
resolution=720p \
speech.text="Guardo el azul en las manos; no por tristeza, sino para recordar que hasta la noche aprende a cambiar." \
speech.voice="Aoede (Female)" \
speech.language=es \
inputs.frameImages.0=https://assets.runware.ai/assets/inputs/c7a9a08e-58c4-48aa-875b-1b9f19256f4f.jpg{
"taskType": "videoInference",
"taskUUID": "9e334a80-a5cb-4965-a56e-410508f7354f",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create an intimate spoken-word music-video performance from this portrait. The vocalist looks directly into the lens and delivers the Spanish lyric with precise, natural lip synchronization. Include realistic blinking, a soft inhale before speaking, restrained facial emotion that develops from reflection into quiet resolve, and subtle organic head movement. Keep her shoulders composed and avoid exaggerated gestures. Preserve the cobalt, ochre, and ivory dyehouse palette, soft natural window light, shallow depth of field, and understated analog-film texture. Locked eye-level camera, polished cinematic realism, no captions or on-screen text.",
"resolution": "720p",
"speech": {
"text": "Guardo el azul en las manos; no por tristeza, sino para recordar que hasta la noche aprende a cambiar.",
"voice": "Aoede (Female)",
"language": "es"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/c7a9a08e-58c4-48aa-875b-1b9f19256f4f.jpg"
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "9e334a80-a5cb-4965-a56e-410508f7354f",
"videoUUID": "4e08acc6-b3df-4e58-9cd1-9db82dcbedcf",
"videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/4e08acc6-b3df-4e58-9cd1-9db82dcbedcf.mp4",
"seed": 1475346096,
"cost": 0.219
}audio-driven-photo-avatar
Seed Vault Thriller Teaser$0.50~1m 6simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'prunaai:p-video@avatar',
positivePrompt: 'Animate this portrait as the ominous cold open of a prestige agricultural conspiracy thriller. The plant pathologist speaks directly to camera with precise lip synchronization, controlled urgency, and quiet dread. Preserve her identity, saffron coverall, Arctic seed-vault corridor, natural polar daylight, and centered front-facing composition. Use subtle facial tension, a slight tightening around the eyes, natural blinking, gentle breathing, and very restrained head movement. Keep the camera locked and the background stable. Photorealistic cinematic performance with no exaggerated gestures, no added people, no titles, and no on-screen text.',
resolution: '1080p',
speech: {
voice: 'Aoede (Female)'
},
inputs: {
frameImages: [
'https://assets.runware.ai/assets/inputs/8ed7eabe-7f1b-4336-b787-754c7e2ec7f2.jpg'
],
audio: 'https://assets.runware.ai/assets/inputs/9a2c7321-0dd3-4d86-8859-e5dc67ca779b.mp3'
}
})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": "prunaai:p-video@avatar",
"positivePrompt": "Animate this portrait as the ominous cold open of a prestige agricultural conspiracy thriller. The plant pathologist speaks directly to camera with precise lip synchronization, controlled urgency, and quiet dread. Preserve her identity, saffron coverall, Arctic seed-vault corridor, natural polar daylight, and centered front-facing composition. Use subtle facial tension, a slight tightening around the eyes, natural blinking, gentle breathing, and very restrained head movement. Keep the camera locked and the background stable. Photorealistic cinematic performance with no exaggerated gestures, no added people, no titles, and no on-screen text.",
"resolution": "1080p",
"speech": {
"voice": "Aoede (Female)"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/8ed7eabe-7f1b-4336-b787-754c7e2ec7f2.jpg"
],
"audio": "https://assets.runware.ai/assets/inputs/9a2c7321-0dd3-4d86-8859-e5dc67ca779b.mp3"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "5fabd35e-09d5-4168-85c2-df83cf2b30cd",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Animate this portrait as the ominous cold open of a prestige agricultural conspiracy thriller. The plant pathologist speaks directly to camera with precise lip synchronization, controlled urgency, and quiet dread. Preserve her identity, saffron coverall, Arctic seed-vault corridor, natural polar daylight, and centered front-facing composition. Use subtle facial tension, a slight tightening around the eyes, natural blinking, gentle breathing, and very restrained head movement. Keep the camera locked and the background stable. Photorealistic cinematic performance with no exaggerated gestures, no added people, no titles, and no on-screen text.",
"resolution": "1080p",
"speech": {
"voice": "Aoede (Female)"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/8ed7eabe-7f1b-4336-b787-754c7e2ec7f2.jpg"
],
"audio": "https://assets.runware.ai/assets/inputs/9a2c7321-0dd3-4d86-8859-e5dc67ca779b.mp3"
}
}
]'runware run prunaai:p-video@avatar \
positivePrompt="Animate this portrait as the ominous cold open of a prestige agricultural conspiracy thriller. The plant pathologist speaks directly to camera with precise lip synchronization, controlled urgency, and quiet dread. Preserve her identity, saffron coverall, Arctic seed-vault corridor, natural polar daylight, and centered front-facing composition. Use subtle facial tension, a slight tightening around the eyes, natural blinking, gentle breathing, and very restrained head movement. Keep the camera locked and the background stable. Photorealistic cinematic performance with no exaggerated gestures, no added people, no titles, and no on-screen text." \
resolution=1080p \
speech.voice="Aoede (Female)" \
inputs.frameImages.0=https://assets.runware.ai/assets/inputs/8ed7eabe-7f1b-4336-b787-754c7e2ec7f2.jpg \
inputs.audio=https://assets.runware.ai/assets/inputs/9a2c7321-0dd3-4d86-8859-e5dc67ca779b.mp3{
"taskType": "videoInference",
"taskUUID": "5fabd35e-09d5-4168-85c2-df83cf2b30cd",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Animate this portrait as the ominous cold open of a prestige agricultural conspiracy thriller. The plant pathologist speaks directly to camera with precise lip synchronization, controlled urgency, and quiet dread. Preserve her identity, saffron coverall, Arctic seed-vault corridor, natural polar daylight, and centered front-facing composition. Use subtle facial tension, a slight tightening around the eyes, natural blinking, gentle breathing, and very restrained head movement. Keep the camera locked and the background stable. Photorealistic cinematic performance with no exaggerated gestures, no added people, no titles, and no on-screen text.",
"resolution": "1080p",
"speech": {
"voice": "Aoede (Female)"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/8ed7eabe-7f1b-4336-b787-754c7e2ec7f2.jpg"
],
"audio": "https://assets.runware.ai/assets/inputs/9a2c7321-0dd3-4d86-8859-e5dc67ca779b.mp3"
}
}Response
{
"taskType": "videoInference",
"taskUUID": "5fabd35e-09d5-4168-85c2-df83cf2b30cd",
"videoUUID": "d4f634af-f455-4164-ae89-ccaf00a452f7",
"videoURL": "https://vm.runware.ai/video/os/a01d21/ws/5/vi/d4f634af-f455-4164-ae89-ccaf00a452f7.mp4",
"seed": 1563194587,
"cost": 0.5004
}audio-driven-photo-avatar
Prestige Fragrance Mystery Teaser$0.488~1m 5simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'prunaai:p-video@avatar',
positivePrompt: 'Create a cinematic prestige-mystery teaser from the supplied portrait and clean dialogue. Preserve the forensic perfumer\'s identity, wardrobe, centered chest-up framing, natural window light, shallow depth of field, and celadon-charcoal-amber color grade. She addresses the viewer with controlled authority and a trace of unease, maintaining direct eye contact. Use precise lip synchronization throughout, subtle facial tension, natural blinking, a slight measured inhale, and restrained head movement. Her expression should sharpen almost imperceptibly on the final phrase. Keep the shot continuous and composed, with no camera movement, cuts, additional people, added objects, or on-screen text.',
resolution: '1080p',
speech: {
voice: 'Algieba (Male)'
},
inputs: {
frameImages: [
'https://assets.runware.ai/assets/inputs/bb7f5ad4-5c5b-4d4e-ad99-5647bb8eaaa1.jpg'
],
audio: 'https://assets.runware.ai/assets/inputs/f43bee72-d64c-4ca1-a57f-0d5a5a6ce6ed.mp3'
}
})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": "prunaai:p-video@avatar",
"positivePrompt": "Create a cinematic prestige-mystery teaser from the supplied portrait and clean dialogue. Preserve the forensic perfumer's identity, wardrobe, centered chest-up framing, natural window light, shallow depth of field, and celadon-charcoal-amber color grade. She addresses the viewer with controlled authority and a trace of unease, maintaining direct eye contact. Use precise lip synchronization throughout, subtle facial tension, natural blinking, a slight measured inhale, and restrained head movement. Her expression should sharpen almost imperceptibly on the final phrase. Keep the shot continuous and composed, with no camera movement, cuts, additional people, added objects, or on-screen text.",
"resolution": "1080p",
"speech": {
"voice": "Algieba (Male)"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/bb7f5ad4-5c5b-4d4e-ad99-5647bb8eaaa1.jpg"
],
"audio": "https://assets.runware.ai/assets/inputs/f43bee72-d64c-4ca1-a57f-0d5a5a6ce6ed.mp3"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "36724d89-ec76-4dc7-9c35-8811b4c7f1dc",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create a cinematic prestige-mystery teaser from the supplied portrait and clean dialogue. Preserve the forensic perfumer's identity, wardrobe, centered chest-up framing, natural window light, shallow depth of field, and celadon-charcoal-amber color grade. She addresses the viewer with controlled authority and a trace of unease, maintaining direct eye contact. Use precise lip synchronization throughout, subtle facial tension, natural blinking, a slight measured inhale, and restrained head movement. Her expression should sharpen almost imperceptibly on the final phrase. Keep the shot continuous and composed, with no camera movement, cuts, additional people, added objects, or on-screen text.",
"resolution": "1080p",
"speech": {
"voice": "Algieba (Male)"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/bb7f5ad4-5c5b-4d4e-ad99-5647bb8eaaa1.jpg"
],
"audio": "https://assets.runware.ai/assets/inputs/f43bee72-d64c-4ca1-a57f-0d5a5a6ce6ed.mp3"
}
}
]'runware run prunaai:p-video@avatar \
positivePrompt="Create a cinematic prestige-mystery teaser from the supplied portrait and clean dialogue. Preserve the forensic perfumer's identity, wardrobe, centered chest-up framing, natural window light, shallow depth of field, and celadon-charcoal-amber color grade. She addresses the viewer with controlled authority and a trace of unease, maintaining direct eye contact. Use precise lip synchronization throughout, subtle facial tension, natural blinking, a slight measured inhale, and restrained head movement. Her expression should sharpen almost imperceptibly on the final phrase. Keep the shot continuous and composed, with no camera movement, cuts, additional people, added objects, or on-screen text." \
resolution=1080p \
speech.voice="Algieba (Male)" \
inputs.frameImages.0=https://assets.runware.ai/assets/inputs/bb7f5ad4-5c5b-4d4e-ad99-5647bb8eaaa1.jpg \
inputs.audio=https://assets.runware.ai/assets/inputs/f43bee72-d64c-4ca1-a57f-0d5a5a6ce6ed.mp3{
"taskType": "videoInference",
"taskUUID": "36724d89-ec76-4dc7-9c35-8811b4c7f1dc",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create a cinematic prestige-mystery teaser from the supplied portrait and clean dialogue. Preserve the forensic perfumer's identity, wardrobe, centered chest-up framing, natural window light, shallow depth of field, and celadon-charcoal-amber color grade. She addresses the viewer with controlled authority and a trace of unease, maintaining direct eye contact. Use precise lip synchronization throughout, subtle facial tension, natural blinking, a slight measured inhale, and restrained head movement. Her expression should sharpen almost imperceptibly on the final phrase. Keep the shot continuous and composed, with no camera movement, cuts, additional people, added objects, or on-screen text.",
"resolution": "1080p",
"speech": {
"voice": "Algieba (Male)"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/bb7f5ad4-5c5b-4d4e-ad99-5647bb8eaaa1.jpg"
],
"audio": "https://assets.runware.ai/assets/inputs/f43bee72-d64c-4ca1-a57f-0d5a5a6ce6ed.mp3"
}
}Response
{
"taskType": "videoInference",
"taskUUID": "36724d89-ec76-4dc7-9c35-8811b4c7f1dc",
"videoUUID": "e365dd8b-d169-41b9-a40f-b8b2230d2e80",
"videoURL": "https://vm.runware.ai/video/os/a01d21/ws/5/vi/e365dd8b-d169-41b9-a40f-b8b2230d2e80.mp4",
"seed": 975278611,
"cost": 0.4878
}scripted-photo-avatar
Airport Biosecurity Training Presenter$0.423~4m 8simport { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'prunaai:p-video@avatar',
positivePrompt: 'Create a polished airport biosecurity microlearning presenter clip from the supplied portrait. The entomologist speaks directly to the viewer with precise natural lip synchronization, steady eye contact, occasional realistic blinking, subtle head movement, and a calm but appropriately vigilant facial expression. Preserve her identity, clothing, inspection-room setting, natural skin texture, and soft documentary lighting. Keep the camera locked in a stable front-facing medium close-up with no cuts, reframing, gestures entering the frame, background distractions, captions, logos, or on-screen text.',
resolution: '720p',
speech: {
text: 'If you spot a gray, putty-like egg mass on outdoor luggage, don\'t scrape it off. Place the item in the inspection tray, note its origin, and call the biosecurity desk. One careful pause can keep an invasive pest from crossing the border.',
voice: 'Kore (Female)',
language: 'en-US'
},
inputs: {
frameImages: [
'https://assets.runware.ai/assets/inputs/7d422411-ed05-4953-bc10-5643e01b6bf7.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create a polished airport biosecurity microlearning presenter clip from the supplied portrait. The entomologist speaks directly to the viewer with precise natural lip synchronization, steady eye contact, occasional realistic blinking, subtle head movement, and a calm but appropriately vigilant facial expression. Preserve her identity, clothing, inspection-room setting, natural skin texture, and soft documentary lighting. Keep the camera locked in a stable front-facing medium close-up with no cuts, reframing, gestures entering the frame, background distractions, captions, logos, or on-screen text.",
"resolution": "720p",
"speech": {
"text": "If you spot a gray, putty-like egg mass on outdoor luggage, don't scrape it off. Place the item in the inspection tray, note its origin, and call the biosecurity desk. One careful pause can keep an invasive pest from crossing the border.",
"voice": "Kore (Female)",
"language": "en-US"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/7d422411-ed05-4953-bc10-5643e01b6bf7.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "e5eddb14-70c1-43df-a72b-b92d03c01187",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create a polished airport biosecurity microlearning presenter clip from the supplied portrait. The entomologist speaks directly to the viewer with precise natural lip synchronization, steady eye contact, occasional realistic blinking, subtle head movement, and a calm but appropriately vigilant facial expression. Preserve her identity, clothing, inspection-room setting, natural skin texture, and soft documentary lighting. Keep the camera locked in a stable front-facing medium close-up with no cuts, reframing, gestures entering the frame, background distractions, captions, logos, or on-screen text.",
"resolution": "720p",
"speech": {
"text": "If you spot a gray, putty-like egg mass on outdoor luggage, don't scrape it off. Place the item in the inspection tray, note its origin, and call the biosecurity desk. One careful pause can keep an invasive pest from crossing the border.",
"voice": "Kore (Female)",
"language": "en-US"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/7d422411-ed05-4953-bc10-5643e01b6bf7.jpg"
]
}
}
]'runware run prunaai:p-video@avatar \
positivePrompt="Create a polished airport biosecurity microlearning presenter clip from the supplied portrait. The entomologist speaks directly to the viewer with precise natural lip synchronization, steady eye contact, occasional realistic blinking, subtle head movement, and a calm but appropriately vigilant facial expression. Preserve her identity, clothing, inspection-room setting, natural skin texture, and soft documentary lighting. Keep the camera locked in a stable front-facing medium close-up with no cuts, reframing, gestures entering the frame, background distractions, captions, logos, or on-screen text." \
resolution=720p \
speech.text="If you spot a gray, putty-like egg mass on outdoor luggage, don't scrape it off. Place the item in the inspection tray, note its origin, and call the biosecurity desk. One careful pause can keep an invasive pest from crossing the border." \
speech.voice="Kore (Female)" \
speech.language=en-US \
inputs.frameImages.0=https://assets.runware.ai/assets/inputs/7d422411-ed05-4953-bc10-5643e01b6bf7.jpg{
"taskType": "videoInference",
"taskUUID": "e5eddb14-70c1-43df-a72b-b92d03c01187",
"model": "prunaai:p-video@avatar",
"positivePrompt": "Create a polished airport biosecurity microlearning presenter clip from the supplied portrait. The entomologist speaks directly to the viewer with precise natural lip synchronization, steady eye contact, occasional realistic blinking, subtle head movement, and a calm but appropriately vigilant facial expression. Preserve her identity, clothing, inspection-room setting, natural skin texture, and soft documentary lighting. Keep the camera locked in a stable front-facing medium close-up with no cuts, reframing, gestures entering the frame, background distractions, captions, logos, or on-screen text.",
"resolution": "720p",
"speech": {
"text": "If you spot a gray, putty-like egg mass on outdoor luggage, don't scrape it off. Place the item in the inspection tray, note its origin, and call the biosecurity desk. One careful pause can keep an invasive pest from crossing the border.",
"voice": "Kore (Female)",
"language": "en-US"
},
"inputs": {
"frameImages": [
"https://assets.runware.ai/assets/inputs/7d422411-ed05-4953-bc10-5643e01b6bf7.jpg"
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "e5eddb14-70c1-43df-a72b-b92d03c01187",
"videoUUID": "a663524d-757e-4cce-ae49-1d2235507c74",
"videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/a663524d-757e-4cce-ae49-1d2235507c74.mp4",
"seed": 1552438255,
"cost": 0.423
}