P-Video-2-Pro

P-Video-2-Pro is Pruna AI's quality-tier video generation model built on MiniMax H3, creating clips from text or from a first frame with an optional last frame. It handles multi-beat camera moves, heavy physics like water, fire, and fabric, coherent full-body motion, and two-shot dialogue with lip sync, generating audio with every clip. It offers a speed or quality recipe, three levels of prompt expansion, durations from 5 to 15 seconds, and 480p or 768p output at 24 FPS.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
text-to-video
Bronze Foundry Art-Pop Music Video$0.38~1m 9simport { 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@2-pro',
positivePrompt: 'Create a finished cinematic music-video segment set inside a working artisan bell foundry at night. One continuous 10-second shot in landscape composition. A female art-pop vocalist in a sculptural soot-black dress and reflective silver foundry apron walks slowly between rows of enormous unfinished bronze bells while two artisans work safely in the deep background. The visual palette is molten orange, oxidized teal, charcoal black, and cold cyan skylight. Furnace light flickers across textured brick, suspended smoke, bronze surfaces, and the singer’s face.\n\nBegin with a low, wide tracking shot gliding past clay bell molds as a narrow stream of molten bronze pours into a mold at a controlled distance. Rise smoothly into a medium frontal shot as the vocalist enters frame and sings directly toward camera with precise natural lip synchronization: “I learned the shape of thunder from the hands that held the flame.” During the lyric, arc halfway around her while a suspended bell behind her begins a slow, physically convincing swing. Tiny orange sparks drift through the air and her dress fabric responds naturally to the warm industrial airflow. On the final word, pull back to reveal the scale of the foundry as an artisan strikes a finished bell once; the singer stops beneath it and looks upward while the bell continues to sway.\n\nGenerate synchronized original audio: dark industrial art-pop at 96 BPM with a restrained analog synth pulse, bowed bass, muted hammer impacts, furnace roar, chain creaks, and resonant bronze percussion. The vocalist has a clear intimate female alto voice and sings the specified lyric once, beginning around 2 seconds and ending around 8 seconds. The final bell strike lands exactly on “flame,” then blooms into a deep metallic decay through the last frame. Realistic foundry ambience remains audible beneath the music. Premium music-video cinematography, subtle film grain, volumetric smoke, controlled highlights, believable molten-metal physics, coherent full-body movement, no cuts, no slow motion, no text, no subtitles, no logos.',
width: 1344,
height: 768,
duration: 10,
settings: {
mode: 'quality',
promptUpsampling: 'max'
}
})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@2-pro",
"positivePrompt": "Create a finished cinematic music-video segment set inside a working artisan bell foundry at night. One continuous 10-second shot in landscape composition. A female art-pop vocalist in a sculptural soot-black dress and reflective silver foundry apron walks slowly between rows of enormous unfinished bronze bells while two artisans work safely in the deep background. The visual palette is molten orange, oxidized teal, charcoal black, and cold cyan skylight. Furnace light flickers across textured brick, suspended smoke, bronze surfaces, and the singer’s face.\n\nBegin with a low, wide tracking shot gliding past clay bell molds as a narrow stream of molten bronze pours into a mold at a controlled distance. Rise smoothly into a medium frontal shot as the vocalist enters frame and sings directly toward camera with precise natural lip synchronization: “I learned the shape of thunder from the hands that held the flame.” During the lyric, arc halfway around her while a suspended bell behind her begins a slow, physically convincing swing. Tiny orange sparks drift through the air and her dress fabric responds naturally to the warm industrial airflow. On the final word, pull back to reveal the scale of the foundry as an artisan strikes a finished bell once; the singer stops beneath it and looks upward while the bell continues to sway.\n\nGenerate synchronized original audio: dark industrial art-pop at 96 BPM with a restrained analog synth pulse, bowed bass, muted hammer impacts, furnace roar, chain creaks, and resonant bronze percussion. The vocalist has a clear intimate female alto voice and sings the specified lyric once, beginning around 2 seconds and ending around 8 seconds. The final bell strike lands exactly on “flame,” then blooms into a deep metallic decay through the last frame. Realistic foundry ambience remains audible beneath the music. Premium music-video cinematography, subtle film grain, volumetric smoke, controlled highlights, believable molten-metal physics, coherent full-body movement, no cuts, no slow motion, no text, no subtitles, no logos.",
"width": 1344,
"height": 768,
"duration": 10,
"settings": {
"mode": "quality",
"promptUpsampling": "max"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "0884d40d-8de1-4b68-9ad6-2236ca6c6923",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "Create a finished cinematic music-video segment set inside a working artisan bell foundry at night. One continuous 10-second shot in landscape composition. A female art-pop vocalist in a sculptural soot-black dress and reflective silver foundry apron walks slowly between rows of enormous unfinished bronze bells while two artisans work safely in the deep background. The visual palette is molten orange, oxidized teal, charcoal black, and cold cyan skylight. Furnace light flickers across textured brick, suspended smoke, bronze surfaces, and the singer’s face.\n\nBegin with a low, wide tracking shot gliding past clay bell molds as a narrow stream of molten bronze pours into a mold at a controlled distance. Rise smoothly into a medium frontal shot as the vocalist enters frame and sings directly toward camera with precise natural lip synchronization: “I learned the shape of thunder from the hands that held the flame.” During the lyric, arc halfway around her while a suspended bell behind her begins a slow, physically convincing swing. Tiny orange sparks drift through the air and her dress fabric responds naturally to the warm industrial airflow. On the final word, pull back to reveal the scale of the foundry as an artisan strikes a finished bell once; the singer stops beneath it and looks upward while the bell continues to sway.\n\nGenerate synchronized original audio: dark industrial art-pop at 96 BPM with a restrained analog synth pulse, bowed bass, muted hammer impacts, furnace roar, chain creaks, and resonant bronze percussion. The vocalist has a clear intimate female alto voice and sings the specified lyric once, beginning around 2 seconds and ending around 8 seconds. The final bell strike lands exactly on “flame,” then blooms into a deep metallic decay through the last frame. Realistic foundry ambience remains audible beneath the music. Premium music-video cinematography, subtle film grain, volumetric smoke, controlled highlights, believable molten-metal physics, coherent full-body movement, no cuts, no slow motion, no text, no subtitles, no logos.",
"width": 1344,
"height": 768,
"duration": 10,
"settings": {
"mode": "quality",
"promptUpsampling": "max"
}
}
]'runware run prunaai:p-video@2-pro \
positivePrompt="Create a finished cinematic music-video segment set inside a working artisan bell foundry at night. One continuous 10-second shot in landscape composition. A female art-pop vocalist in a sculptural soot-black dress and reflective silver foundry apron walks slowly between rows of enormous unfinished bronze bells while two artisans work safely in the deep background. The visual palette is molten orange, oxidized teal, charcoal black, and cold cyan skylight. Furnace light flickers across textured brick, suspended smoke, bronze surfaces, and the singer’s face.
Begin with a low, wide tracking shot gliding past clay bell molds as a narrow stream of molten bronze pours into a mold at a controlled distance. Rise smoothly into a medium frontal shot as the vocalist enters frame and sings directly toward camera with precise natural lip synchronization: “I learned the shape of thunder from the hands that held the flame.” During the lyric, arc halfway around her while a suspended bell behind her begins a slow, physically convincing swing. Tiny orange sparks drift through the air and her dress fabric responds naturally to the warm industrial airflow. On the final word, pull back to reveal the scale of the foundry as an artisan strikes a finished bell once; the singer stops beneath it and looks upward while the bell continues to sway.
Generate synchronized original audio: dark industrial art-pop at 96 BPM with a restrained analog synth pulse, bowed bass, muted hammer impacts, furnace roar, chain creaks, and resonant bronze percussion. The vocalist has a clear intimate female alto voice and sings the specified lyric once, beginning around 2 seconds and ending around 8 seconds. The final bell strike lands exactly on “flame,” then blooms into a deep metallic decay through the last frame. Realistic foundry ambience remains audible beneath the music. Premium music-video cinematography, subtle film grain, volumetric smoke, controlled highlights, believable molten-metal physics, coherent full-body movement, no cuts, no slow motion, no text, no subtitles, no logos." \
width=1344 \
height=768 \
duration=10 \
settings.mode=quality \
settings.promptUpsampling=max{
"taskType": "videoInference",
"taskUUID": "0884d40d-8de1-4b68-9ad6-2236ca6c6923",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "Create a finished cinematic music-video segment set inside a working artisan bell foundry at night. One continuous 10-second shot in landscape composition. A female art-pop vocalist in a sculptural soot-black dress and reflective silver foundry apron walks slowly between rows of enormous unfinished bronze bells while two artisans work safely in the deep background. The visual palette is molten orange, oxidized teal, charcoal black, and cold cyan skylight. Furnace light flickers across textured brick, suspended smoke, bronze surfaces, and the singer’s face.\n\nBegin with a low, wide tracking shot gliding past clay bell molds as a narrow stream of molten bronze pours into a mold at a controlled distance. Rise smoothly into a medium frontal shot as the vocalist enters frame and sings directly toward camera with precise natural lip synchronization: “I learned the shape of thunder from the hands that held the flame.” During the lyric, arc halfway around her while a suspended bell behind her begins a slow, physically convincing swing. Tiny orange sparks drift through the air and her dress fabric responds naturally to the warm industrial airflow. On the final word, pull back to reveal the scale of the foundry as an artisan strikes a finished bell once; the singer stops beneath it and looks upward while the bell continues to sway.\n\nGenerate synchronized original audio: dark industrial art-pop at 96 BPM with a restrained analog synth pulse, bowed bass, muted hammer impacts, furnace roar, chain creaks, and resonant bronze percussion. The vocalist has a clear intimate female alto voice and sings the specified lyric once, beginning around 2 seconds and ending around 8 seconds. The final bell strike lands exactly on “flame,” then blooms into a deep metallic decay through the last frame. Realistic foundry ambience remains audible beneath the music. Premium music-video cinematography, subtle film grain, volumetric smoke, controlled highlights, believable molten-metal physics, coherent full-body movement, no cuts, no slow motion, no text, no subtitles, no logos.",
"width": 1344,
"height": 768,
"duration": 10,
"settings": {
"mode": "quality",
"promptUpsampling": "max"
}
}Response
{
"taskType": "videoInference",
"taskUUID": "0884d40d-8de1-4b68-9ad6-2236ca6c6923",
"videoUUID": "701add86-0981-4932-b7a9-9878119641cc",
"videoURL": "https://vm.runware.ai/video/os/a05d22/ws/5/vi/701add86-0981-4932-b7a9-9878119641cc.mp4",
"seed": 1061588653,
"cost": 0.3797
}text-to-video
Self-Rising Flood Barrier Demo$0.38~1m 23simport { 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@2-pro',
positivePrompt: 'A polished 10-second landscape product demonstration filmed in a realistic architectural testing facility. Center the scene on a full-scale garage doorway fitted with a recessed stainless-steel self-rising flood barrier. Begin with a low three-quarter view from the dry interior side as shallow floodwater rushes toward the doorway from an outdoor test channel. The camera makes a slow lateral dolly toward a clear side cutaway in the threshold, revealing water entering the underground chamber. As the chamber fills, the buoyant aluminum gate rises smoothly from the floor in one continuous mechanically credible motion. Track upward with the gate as rubber edge seals compress against the vertical guides with a firm final lock. Finish by arcing slightly around the raised barrier: turbulent water surges against the wet side while the clean concrete floor behind it remains completely dry. Crisp commercial documentary cinematography, cool gray concrete, brushed metal, safety-yellow guide rails, overcast daylight, realistic water physics, detailed splashes and reflections, clear visual cause and effect, no captions or interface graphics. Synchronized audio: rushing water grows louder as it reaches the doorway, hollow chamber filling sounds, a smooth mechanical rise, rubber compression, and a solid metallic locking clunk. Calm professional male voice-over says exactly: “As floodwater enters the chamber, buoyancy lifts the gate automatically, sealing the opening without power or manual setup.”',
width: 1344,
height: 768,
duration: 10,
settings: {
mode: 'quality',
promptUpsampling: 'max'
}
})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@2-pro",
"positivePrompt": "A polished 10-second landscape product demonstration filmed in a realistic architectural testing facility. Center the scene on a full-scale garage doorway fitted with a recessed stainless-steel self-rising flood barrier. Begin with a low three-quarter view from the dry interior side as shallow floodwater rushes toward the doorway from an outdoor test channel. The camera makes a slow lateral dolly toward a clear side cutaway in the threshold, revealing water entering the underground chamber. As the chamber fills, the buoyant aluminum gate rises smoothly from the floor in one continuous mechanically credible motion. Track upward with the gate as rubber edge seals compress against the vertical guides with a firm final lock. Finish by arcing slightly around the raised barrier: turbulent water surges against the wet side while the clean concrete floor behind it remains completely dry. Crisp commercial documentary cinematography, cool gray concrete, brushed metal, safety-yellow guide rails, overcast daylight, realistic water physics, detailed splashes and reflections, clear visual cause and effect, no captions or interface graphics. Synchronized audio: rushing water grows louder as it reaches the doorway, hollow chamber filling sounds, a smooth mechanical rise, rubber compression, and a solid metallic locking clunk. Calm professional male voice-over says exactly: “As floodwater enters the chamber, buoyancy lifts the gate automatically, sealing the opening without power or manual setup.”",
"width": 1344,
"height": 768,
"duration": 10,
"settings": {
"mode": "quality",
"promptUpsampling": "max"
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "90a1672d-015a-44a0-8d9a-4dbf40ec4f62",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "A polished 10-second landscape product demonstration filmed in a realistic architectural testing facility. Center the scene on a full-scale garage doorway fitted with a recessed stainless-steel self-rising flood barrier. Begin with a low three-quarter view from the dry interior side as shallow floodwater rushes toward the doorway from an outdoor test channel. The camera makes a slow lateral dolly toward a clear side cutaway in the threshold, revealing water entering the underground chamber. As the chamber fills, the buoyant aluminum gate rises smoothly from the floor in one continuous mechanically credible motion. Track upward with the gate as rubber edge seals compress against the vertical guides with a firm final lock. Finish by arcing slightly around the raised barrier: turbulent water surges against the wet side while the clean concrete floor behind it remains completely dry. Crisp commercial documentary cinematography, cool gray concrete, brushed metal, safety-yellow guide rails, overcast daylight, realistic water physics, detailed splashes and reflections, clear visual cause and effect, no captions or interface graphics. Synchronized audio: rushing water grows louder as it reaches the doorway, hollow chamber filling sounds, a smooth mechanical rise, rubber compression, and a solid metallic locking clunk. Calm professional male voice-over says exactly: “As floodwater enters the chamber, buoyancy lifts the gate automatically, sealing the opening without power or manual setup.”",
"width": 1344,
"height": 768,
"duration": 10,
"settings": {
"mode": "quality",
"promptUpsampling": "max"
}
}
]'runware run prunaai:p-video@2-pro \
positivePrompt="A polished 10-second landscape product demonstration filmed in a realistic architectural testing facility. Center the scene on a full-scale garage doorway fitted with a recessed stainless-steel self-rising flood barrier. Begin with a low three-quarter view from the dry interior side as shallow floodwater rushes toward the doorway from an outdoor test channel. The camera makes a slow lateral dolly toward a clear side cutaway in the threshold, revealing water entering the underground chamber. As the chamber fills, the buoyant aluminum gate rises smoothly from the floor in one continuous mechanically credible motion. Track upward with the gate as rubber edge seals compress against the vertical guides with a firm final lock. Finish by arcing slightly around the raised barrier: turbulent water surges against the wet side while the clean concrete floor behind it remains completely dry. Crisp commercial documentary cinematography, cool gray concrete, brushed metal, safety-yellow guide rails, overcast daylight, realistic water physics, detailed splashes and reflections, clear visual cause and effect, no captions or interface graphics. Synchronized audio: rushing water grows louder as it reaches the doorway, hollow chamber filling sounds, a smooth mechanical rise, rubber compression, and a solid metallic locking clunk. Calm professional male voice-over says exactly: “As floodwater enters the chamber, buoyancy lifts the gate automatically, sealing the opening without power or manual setup.”" \
width=1344 \
height=768 \
duration=10 \
settings.mode=quality \
settings.promptUpsampling=max{
"taskType": "videoInference",
"taskUUID": "90a1672d-015a-44a0-8d9a-4dbf40ec4f62",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "A polished 10-second landscape product demonstration filmed in a realistic architectural testing facility. Center the scene on a full-scale garage doorway fitted with a recessed stainless-steel self-rising flood barrier. Begin with a low three-quarter view from the dry interior side as shallow floodwater rushes toward the doorway from an outdoor test channel. The camera makes a slow lateral dolly toward a clear side cutaway in the threshold, revealing water entering the underground chamber. As the chamber fills, the buoyant aluminum gate rises smoothly from the floor in one continuous mechanically credible motion. Track upward with the gate as rubber edge seals compress against the vertical guides with a firm final lock. Finish by arcing slightly around the raised barrier: turbulent water surges against the wet side while the clean concrete floor behind it remains completely dry. Crisp commercial documentary cinematography, cool gray concrete, brushed metal, safety-yellow guide rails, overcast daylight, realistic water physics, detailed splashes and reflections, clear visual cause and effect, no captions or interface graphics. Synchronized audio: rushing water grows louder as it reaches the doorway, hollow chamber filling sounds, a smooth mechanical rise, rubber compression, and a solid metallic locking clunk. Calm professional male voice-over says exactly: “As floodwater enters the chamber, buoyancy lifts the gate automatically, sealing the opening without power or manual setup.”",
"width": 1344,
"height": 768,
"duration": 10,
"settings": {
"mode": "quality",
"promptUpsampling": "max"
}
}Response
{
"taskType": "videoInference",
"taskUUID": "90a1672d-015a-44a0-8d9a-4dbf40ec4f62",
"videoUUID": "9e50e880-51ba-4f1c-8674-c9deda938acc",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/9e50e880-51ba-4f1c-8674-c9deda938acc.mp4",
"seed": 1984884212,
"cost": 0.3797
}first-frame
Tidal Accordion Music Video$0.0904~18simport { 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@2-pro',
positivePrompt: 'Continue directly from the supplied first frame as a polished maritime folk-electronica music-video shot. The accordionist sharply opens the bellows on the first beat, then strides toward camera along the slick oyster-farm walkway while playing with confident, rhythmically accurate hand movement. Her yellow overalls and loose hair whip in the sea wind. The camera tracks backward at low eye level, then makes a smooth quarter-arc around her right side as she passes an oyster basket. On the final beat, her boot lands in a shallow puddle, sending a crisp fan of water toward the lens while several nearby gulls lift into the mist behind her. Preserve the realistic dawn location, slate-blue water, pale peach horizon and bold yellow wardrobe accent. Natural full-body motion, coherent fingers and accordion bellows, convincing wind, fabric and splash physics, cinematic 28mm perspective, subtle handheld energy without shake, no cuts, no slow motion, no text or logos. Generate synchronized audio: driving folk-electronica with a dry kick drum, pulsing bass, bright button-accordion stabs matching her bellows, boot impacts and puddle splash in sync, restrained coastal wind and distant gull wings; no spoken dialogue.',
resolution: '768p',
duration: 5
})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@2-pro",
"positivePrompt": "Continue directly from the supplied first frame as a polished maritime folk-electronica music-video shot. The accordionist sharply opens the bellows on the first beat, then strides toward camera along the slick oyster-farm walkway while playing with confident, rhythmically accurate hand movement. Her yellow overalls and loose hair whip in the sea wind. The camera tracks backward at low eye level, then makes a smooth quarter-arc around her right side as she passes an oyster basket. On the final beat, her boot lands in a shallow puddle, sending a crisp fan of water toward the lens while several nearby gulls lift into the mist behind her. Preserve the realistic dawn location, slate-blue water, pale peach horizon and bold yellow wardrobe accent. Natural full-body motion, coherent fingers and accordion bellows, convincing wind, fabric and splash physics, cinematic 28mm perspective, subtle handheld energy without shake, no cuts, no slow motion, no text or logos. Generate synchronized audio: driving folk-electronica with a dry kick drum, pulsing bass, bright button-accordion stabs matching her bellows, boot impacts and puddle splash in sync, restrained coastal wind and distant gull wings; no spoken dialogue.",
"resolution": "768p",
"duration": 5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "381a1792-f9c8-4f33-81d6-62762b87da44",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "Continue directly from the supplied first frame as a polished maritime folk-electronica music-video shot. The accordionist sharply opens the bellows on the first beat, then strides toward camera along the slick oyster-farm walkway while playing with confident, rhythmically accurate hand movement. Her yellow overalls and loose hair whip in the sea wind. The camera tracks backward at low eye level, then makes a smooth quarter-arc around her right side as she passes an oyster basket. On the final beat, her boot lands in a shallow puddle, sending a crisp fan of water toward the lens while several nearby gulls lift into the mist behind her. Preserve the realistic dawn location, slate-blue water, pale peach horizon and bold yellow wardrobe accent. Natural full-body motion, coherent fingers and accordion bellows, convincing wind, fabric and splash physics, cinematic 28mm perspective, subtle handheld energy without shake, no cuts, no slow motion, no text or logos. Generate synchronized audio: driving folk-electronica with a dry kick drum, pulsing bass, bright button-accordion stabs matching her bellows, boot impacts and puddle splash in sync, restrained coastal wind and distant gull wings; no spoken dialogue.",
"resolution": "768p",
"duration": 5
}
]'runware run prunaai:p-video@2-pro \
positivePrompt="Continue directly from the supplied first frame as a polished maritime folk-electronica music-video shot. The accordionist sharply opens the bellows on the first beat, then strides toward camera along the slick oyster-farm walkway while playing with confident, rhythmically accurate hand movement. Her yellow overalls and loose hair whip in the sea wind. The camera tracks backward at low eye level, then makes a smooth quarter-arc around her right side as she passes an oyster basket. On the final beat, her boot lands in a shallow puddle, sending a crisp fan of water toward the lens while several nearby gulls lift into the mist behind her. Preserve the realistic dawn location, slate-blue water, pale peach horizon and bold yellow wardrobe accent. Natural full-body motion, coherent fingers and accordion bellows, convincing wind, fabric and splash physics, cinematic 28mm perspective, subtle handheld energy without shake, no cuts, no slow motion, no text or logos. Generate synchronized audio: driving folk-electronica with a dry kick drum, pulsing bass, bright button-accordion stabs matching her bellows, boot impacts and puddle splash in sync, restrained coastal wind and distant gull wings; no spoken dialogue." \
resolution=768p \
duration=5{
"taskType": "videoInference",
"taskUUID": "381a1792-f9c8-4f33-81d6-62762b87da44",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "Continue directly from the supplied first frame as a polished maritime folk-electronica music-video shot. The accordionist sharply opens the bellows on the first beat, then strides toward camera along the slick oyster-farm walkway while playing with confident, rhythmically accurate hand movement. Her yellow overalls and loose hair whip in the sea wind. The camera tracks backward at low eye level, then makes a smooth quarter-arc around her right side as she passes an oyster basket. On the final beat, her boot lands in a shallow puddle, sending a crisp fan of water toward the lens while several nearby gulls lift into the mist behind her. Preserve the realistic dawn location, slate-blue water, pale peach horizon and bold yellow wardrobe accent. Natural full-body motion, coherent fingers and accordion bellows, convincing wind, fabric and splash physics, cinematic 28mm perspective, subtle handheld energy without shake, no cuts, no slow motion, no text or logos. Generate synchronized audio: driving folk-electronica with a dry kick drum, pulsing bass, bright button-accordion stabs matching her bellows, boot impacts and puddle splash in sync, restrained coastal wind and distant gull wings; no spoken dialogue.",
"resolution": "768p",
"duration": 5
}Response
{
"taskType": "videoInference",
"taskUUID": "381a1792-f9c8-4f33-81d6-62762b87da44",
"videoUUID": "34249378-5eac-4a1e-9bde-408c22fdcc78",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/34249378-5eac-4a1e-9bde-408c22fdcc78.mp4",
"seed": 1900679139,
"cost": 0.0904
}first-last-frame
Cryogenic Seed Vault B-Roll$0.539~1m 3simport { 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@2-pro',
positivePrompt: 'Create one continuous 15-second documentary b-roll shot connecting the supplied first and last frames inside a subzero agricultural seed archive. Preserve the technician\'s exact identity, clothing, proportions, cabinet aisle, lighting, and canister design throughout. Begin on the wide first-frame composition as she pulls the frosted specimen drawer fully open. The camera makes a slow, stable dolly forward and gently arcs from her side toward an over-the-shoulder angle. She examines the organized canisters, selects one small cylindrical canister, closes the drawer with her hip, then walks two measured steps to the adjacent stainless scanning bench. Track her naturally without cuts. Her insulated parka creases and settles realistically, her gloved hands maintain a secure grip, faint breath vapor appears in the cold air, and small frost crystals loosen from the canister. End precisely in the supplied medium-close final composition as she lowers the canister into the scanner cradle and a soft green confirmation light appears. Clinical observational cinematography for a climate resilience documentary or agricultural technology report; credible facility details, cool cyan and brushed-steel palette contrasted by the burnt-orange parka, restrained depth of field, physically accurate motion, no posing, no dialogue, no logos, no readable text. Synchronized location sound only: constant low refrigeration hum and ventilation, muted drawer-rail rumble, a soft metal latch click, insulated footsteps, fabric rustle, a delicate canister clink, and one quiet scanner confirmation beep at the final placement.',
resolution: '768p',
duration: 15,
settings: {
mode: 'quality',
promptUpsampling: 'turbo'
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/97b16648-7dd4-4c33-9f69-c5eaeb91c8e5.jpg',
frame: 'first'
},
{
image: 'https://assets.runware.ai/assets/inputs/01606cce-e96b-42cc-8245-1c91f62c475a.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": "prunaai:p-video@2-pro",
"positivePrompt": "Create one continuous 15-second documentary b-roll shot connecting the supplied first and last frames inside a subzero agricultural seed archive. Preserve the technician's exact identity, clothing, proportions, cabinet aisle, lighting, and canister design throughout. Begin on the wide first-frame composition as she pulls the frosted specimen drawer fully open. The camera makes a slow, stable dolly forward and gently arcs from her side toward an over-the-shoulder angle. She examines the organized canisters, selects one small cylindrical canister, closes the drawer with her hip, then walks two measured steps to the adjacent stainless scanning bench. Track her naturally without cuts. Her insulated parka creases and settles realistically, her gloved hands maintain a secure grip, faint breath vapor appears in the cold air, and small frost crystals loosen from the canister. End precisely in the supplied medium-close final composition as she lowers the canister into the scanner cradle and a soft green confirmation light appears. Clinical observational cinematography for a climate resilience documentary or agricultural technology report; credible facility details, cool cyan and brushed-steel palette contrasted by the burnt-orange parka, restrained depth of field, physically accurate motion, no posing, no dialogue, no logos, no readable text. Synchronized location sound only: constant low refrigeration hum and ventilation, muted drawer-rail rumble, a soft metal latch click, insulated footsteps, fabric rustle, a delicate canister clink, and one quiet scanner confirmation beep at the final placement.",
"resolution": "768p",
"duration": 15,
"settings": {
"mode": "quality",
"promptUpsampling": "turbo"
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/97b16648-7dd4-4c33-9f69-c5eaeb91c8e5.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/01606cce-e96b-42cc-8245-1c91f62c475a.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": "8b0a5193-b84f-4d52-bd74-d8bcda87ed4c",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "Create one continuous 15-second documentary b-roll shot connecting the supplied first and last frames inside a subzero agricultural seed archive. Preserve the technician's exact identity, clothing, proportions, cabinet aisle, lighting, and canister design throughout. Begin on the wide first-frame composition as she pulls the frosted specimen drawer fully open. The camera makes a slow, stable dolly forward and gently arcs from her side toward an over-the-shoulder angle. She examines the organized canisters, selects one small cylindrical canister, closes the drawer with her hip, then walks two measured steps to the adjacent stainless scanning bench. Track her naturally without cuts. Her insulated parka creases and settles realistically, her gloved hands maintain a secure grip, faint breath vapor appears in the cold air, and small frost crystals loosen from the canister. End precisely in the supplied medium-close final composition as she lowers the canister into the scanner cradle and a soft green confirmation light appears. Clinical observational cinematography for a climate resilience documentary or agricultural technology report; credible facility details, cool cyan and brushed-steel palette contrasted by the burnt-orange parka, restrained depth of field, physically accurate motion, no posing, no dialogue, no logos, no readable text. Synchronized location sound only: constant low refrigeration hum and ventilation, muted drawer-rail rumble, a soft metal latch click, insulated footsteps, fabric rustle, a delicate canister clink, and one quiet scanner confirmation beep at the final placement.",
"resolution": "768p",
"duration": 15,
"settings": {
"mode": "quality",
"promptUpsampling": "turbo"
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/97b16648-7dd4-4c33-9f69-c5eaeb91c8e5.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/01606cce-e96b-42cc-8245-1c91f62c475a.jpg",
"frame": "last"
}
]
}
}
]'runware run prunaai:p-video@2-pro \
positivePrompt="Create one continuous 15-second documentary b-roll shot connecting the supplied first and last frames inside a subzero agricultural seed archive. Preserve the technician's exact identity, clothing, proportions, cabinet aisle, lighting, and canister design throughout. Begin on the wide first-frame composition as she pulls the frosted specimen drawer fully open. The camera makes a slow, stable dolly forward and gently arcs from her side toward an over-the-shoulder angle. She examines the organized canisters, selects one small cylindrical canister, closes the drawer with her hip, then walks two measured steps to the adjacent stainless scanning bench. Track her naturally without cuts. Her insulated parka creases and settles realistically, her gloved hands maintain a secure grip, faint breath vapor appears in the cold air, and small frost crystals loosen from the canister. End precisely in the supplied medium-close final composition as she lowers the canister into the scanner cradle and a soft green confirmation light appears. Clinical observational cinematography for a climate resilience documentary or agricultural technology report; credible facility details, cool cyan and brushed-steel palette contrasted by the burnt-orange parka, restrained depth of field, physically accurate motion, no posing, no dialogue, no logos, no readable text. Synchronized location sound only: constant low refrigeration hum and ventilation, muted drawer-rail rumble, a soft metal latch click, insulated footsteps, fabric rustle, a delicate canister clink, and one quiet scanner confirmation beep at the final placement." \
resolution=768p \
duration=15 \
settings.mode=quality \
settings.promptUpsampling=turbo \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/97b16648-7dd4-4c33-9f69-c5eaeb91c8e5.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/01606cce-e96b-42cc-8245-1c91f62c475a.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "8b0a5193-b84f-4d52-bd74-d8bcda87ed4c",
"model": "prunaai:p-video@2-pro",
"positivePrompt": "Create one continuous 15-second documentary b-roll shot connecting the supplied first and last frames inside a subzero agricultural seed archive. Preserve the technician's exact identity, clothing, proportions, cabinet aisle, lighting, and canister design throughout. Begin on the wide first-frame composition as she pulls the frosted specimen drawer fully open. The camera makes a slow, stable dolly forward and gently arcs from her side toward an over-the-shoulder angle. She examines the organized canisters, selects one small cylindrical canister, closes the drawer with her hip, then walks two measured steps to the adjacent stainless scanning bench. Track her naturally without cuts. Her insulated parka creases and settles realistically, her gloved hands maintain a secure grip, faint breath vapor appears in the cold air, and small frost crystals loosen from the canister. End precisely in the supplied medium-close final composition as she lowers the canister into the scanner cradle and a soft green confirmation light appears. Clinical observational cinematography for a climate resilience documentary or agricultural technology report; credible facility details, cool cyan and brushed-steel palette contrasted by the burnt-orange parka, restrained depth of field, physically accurate motion, no posing, no dialogue, no logos, no readable text. Synchronized location sound only: constant low refrigeration hum and ventilation, muted drawer-rail rumble, a soft metal latch click, insulated footsteps, fabric rustle, a delicate canister clink, and one quiet scanner confirmation beep at the final placement.",
"resolution": "768p",
"duration": 15,
"settings": {
"mode": "quality",
"promptUpsampling": "turbo"
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/97b16648-7dd4-4c33-9f69-c5eaeb91c8e5.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/01606cce-e96b-42cc-8245-1c91f62c475a.jpg",
"frame": "last"
}
]
}
}Response
{
"taskType": "videoInference",
"taskUUID": "8b0a5193-b84f-4d52-bd74-d8bcda87ed4c",
"videoUUID": "9453feed-bd6e-471d-85ea-69f39122e926",
"videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/9453feed-bd6e-471d-85ea-69f39122e926.mp4",
"seed": 1498766104,
"cost": 0.5391
}