PixVerse V5.6

PixVerse V5.6 is an upgraded video generation model that improves visual stability, motion clarity, and audio-visual alignment over previous versions. It supports text-to-video and image-to-video generation with optional native audio, delivering more accurate multi-character lip-sync, cleaner motion in complex scenes, and more natural speech and environmental sound for single-shot cinematic outputs.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples9
CODE
Ready-to-use code snippets for common workflows
Bell Foundry Folk Music Segment
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'A finished 10-second music-video segment for an industrial folk single, presented as one continuous cinematic shot. Inside a century-old bronze bell foundry at dawn, a soot-streaked female metalworker in a heavy indigo canvas apron stands beside a glowing crucible and sings directly to camera: “We pour the fire, we ring the dawn, every scar becomes a song.” She delivers the lyric with restrained intensity and accurate lip sync. Two foundry workers behind her swing long-handled hammers onto bronze forms in clear rhythmic unison; each impact releases a small burst of amber sparks. Begin in a wide landscape view framed through hanging chains and dark bell silhouettes, then slowly dolly forward to a chest-up portrait as the singer turns from the furnace and meets the lens. Practical documentary realism, subtle handheld texture, 16mm film grain, deep soot black, furnace orange, muted indigo and oxidized teal, volumetric morning light through dusty windows, natural faces and physically coherent movement. Soundscape: raw female folk vocal, low bowed cello drone, measured metallic hammer percussion synchronized to the visible strikes, furnace roar, chain rattle and the long resonant hum of a newly cast bell. No titles or on-screen text.',
negativePrompt: 'cyberpunk, neon lighting, futuristic machinery, glossy commercial studio, fantasy costumes, extra limbs, duplicated workers, warped tools, incoherent hammer motion, excessive sparks, subtitles, captions, logos, watermarks, cuts, montage',
width: 1280,
height: 720,
duration: 10,
providerSettings: {
pixverse: {
audio: true,
thinking: 'auto'
}
}
})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": "pixverse:1@7",
"positivePrompt": "A finished 10-second music-video segment for an industrial folk single, presented as one continuous cinematic shot. Inside a century-old bronze bell foundry at dawn, a soot-streaked female metalworker in a heavy indigo canvas apron stands beside a glowing crucible and sings directly to camera: “We pour the fire, we ring the dawn, every scar becomes a song.” She delivers the lyric with restrained intensity and accurate lip sync. Two foundry workers behind her swing long-handled hammers onto bronze forms in clear rhythmic unison; each impact releases a small burst of amber sparks. Begin in a wide landscape view framed through hanging chains and dark bell silhouettes, then slowly dolly forward to a chest-up portrait as the singer turns from the furnace and meets the lens. Practical documentary realism, subtle handheld texture, 16mm film grain, deep soot black, furnace orange, muted indigo and oxidized teal, volumetric morning light through dusty windows, natural faces and physically coherent movement. Soundscape: raw female folk vocal, low bowed cello drone, measured metallic hammer percussion synchronized to the visible strikes, furnace roar, chain rattle and the long resonant hum of a newly cast bell. No titles or on-screen text.",
"negativePrompt": "cyberpunk, neon lighting, futuristic machinery, glossy commercial studio, fantasy costumes, extra limbs, duplicated workers, warped tools, incoherent hammer motion, excessive sparks, subtitles, captions, logos, watermarks, cuts, montage",
"width": 1280,
"height": 720,
"duration": 10,
"providerSettings": {
"pixverse": {
"audio": True,
"thinking": "auto"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "d5edf8b9-40fa-47bc-bc99-d21139bc7429",
"model": "pixverse:1@7",
"positivePrompt": "A finished 10-second music-video segment for an industrial folk single, presented as one continuous cinematic shot. Inside a century-old bronze bell foundry at dawn, a soot-streaked female metalworker in a heavy indigo canvas apron stands beside a glowing crucible and sings directly to camera: “We pour the fire, we ring the dawn, every scar becomes a song.” She delivers the lyric with restrained intensity and accurate lip sync. Two foundry workers behind her swing long-handled hammers onto bronze forms in clear rhythmic unison; each impact releases a small burst of amber sparks. Begin in a wide landscape view framed through hanging chains and dark bell silhouettes, then slowly dolly forward to a chest-up portrait as the singer turns from the furnace and meets the lens. Practical documentary realism, subtle handheld texture, 16mm film grain, deep soot black, furnace orange, muted indigo and oxidized teal, volumetric morning light through dusty windows, natural faces and physically coherent movement. Soundscape: raw female folk vocal, low bowed cello drone, measured metallic hammer percussion synchronized to the visible strikes, furnace roar, chain rattle and the long resonant hum of a newly cast bell. No titles or on-screen text.",
"negativePrompt": "cyberpunk, neon lighting, futuristic machinery, glossy commercial studio, fantasy costumes, extra limbs, duplicated workers, warped tools, incoherent hammer motion, excessive sparks, subtitles, captions, logos, watermarks, cuts, montage",
"width": 1280,
"height": 720,
"duration": 10,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
}
}
]'runware run pixverse:1@7 \
positivePrompt="A finished 10-second music-video segment for an industrial folk single, presented as one continuous cinematic shot. Inside a century-old bronze bell foundry at dawn, a soot-streaked female metalworker in a heavy indigo canvas apron stands beside a glowing crucible and sings directly to camera: “We pour the fire, we ring the dawn, every scar becomes a song.” She delivers the lyric with restrained intensity and accurate lip sync. Two foundry workers behind her swing long-handled hammers onto bronze forms in clear rhythmic unison; each impact releases a small burst of amber sparks. Begin in a wide landscape view framed through hanging chains and dark bell silhouettes, then slowly dolly forward to a chest-up portrait as the singer turns from the furnace and meets the lens. Practical documentary realism, subtle handheld texture, 16mm film grain, deep soot black, furnace orange, muted indigo and oxidized teal, volumetric morning light through dusty windows, natural faces and physically coherent movement. Soundscape: raw female folk vocal, low bowed cello drone, measured metallic hammer percussion synchronized to the visible strikes, furnace roar, chain rattle and the long resonant hum of a newly cast bell. No titles or on-screen text." \
negativePrompt="cyberpunk, neon lighting, futuristic machinery, glossy commercial studio, fantasy costumes, extra limbs, duplicated workers, warped tools, incoherent hammer motion, excessive sparks, subtitles, captions, logos, watermarks, cuts, montage" \
width=1280 \
height=720 \
duration=10 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=auto{
"taskType": "videoInference",
"taskUUID": "d5edf8b9-40fa-47bc-bc99-d21139bc7429",
"model": "pixverse:1@7",
"positivePrompt": "A finished 10-second music-video segment for an industrial folk single, presented as one continuous cinematic shot. Inside a century-old bronze bell foundry at dawn, a soot-streaked female metalworker in a heavy indigo canvas apron stands beside a glowing crucible and sings directly to camera: “We pour the fire, we ring the dawn, every scar becomes a song.” She delivers the lyric with restrained intensity and accurate lip sync. Two foundry workers behind her swing long-handled hammers onto bronze forms in clear rhythmic unison; each impact releases a small burst of amber sparks. Begin in a wide landscape view framed through hanging chains and dark bell silhouettes, then slowly dolly forward to a chest-up portrait as the singer turns from the furnace and meets the lens. Practical documentary realism, subtle handheld texture, 16mm film grain, deep soot black, furnace orange, muted indigo and oxidized teal, volumetric morning light through dusty windows, natural faces and physically coherent movement. Soundscape: raw female folk vocal, low bowed cello drone, measured metallic hammer percussion synchronized to the visible strikes, furnace roar, chain rattle and the long resonant hum of a newly cast bell. No titles or on-screen text.",
"negativePrompt": "cyberpunk, neon lighting, futuristic machinery, glossy commercial studio, fantasy costumes, extra limbs, duplicated workers, warped tools, incoherent hammer motion, excessive sparks, subtitles, captions, logos, watermarks, cuts, montage",
"width": 1280,
"height": 720,
"duration": 10,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
}
}{
"taskType": "videoInference",
"taskUUID": "d5edf8b9-40fa-47bc-bc99-d21139bc7429",
"videoUUID": "4ec42156-2355-4bb2-8896-d1b8166d6c50",
"videoURL": "https://vm.runware.ai/video/os/a02d21/ws/5/vi/4ec42156-2355-4bb2-8896-d1b8166d6c50.mp4",
"seed": 753355564,
"cost": 0.4243
}Antarctic Ice Core Science Update
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'A single uninterrupted 10-second talking-head science update inside an Antarctic research station ice-core archive. A middle-aged Māori woman glaciologist in a cream insulated field jacket stands chest-up between orderly stainless-steel racks of cylindrical ice samples. Frosted cyan light fills the archive while one soft amber practical light adds warmth to her face. She looks directly into the lens, speaks with calm authority, blinks naturally, and makes one restrained hand gesture toward the ice cores. Precise natural lip synchronization. She says verbatim: “This ice holds air from eight hundred thousand years ago; each trapped bubble helps us measure how Earth’s climate changed.” Documentary realism, clean institutional visual language, pale cyan, white, and warm cream palette. Locked eye-level camera with a very slow subtle push-in, shallow depth of field, stable facial features, realistic breath and fabric movement. Native audio: clear close-miked female voice with a gentle New Zealand accent, quiet ventilation hum and distant freezer compressor, no music. No captions, logos, labels, or on-screen graphics.',
negativePrompt: 'camera shake, cuts, montage, interviewer, additional people, exaggerated gestures, drifting eyes, poor lip sync, distorted mouth, facial warping, frozen expression, noisy speech, loud machinery, music, subtitles, captions, logos, watermarks, on-screen text',
width: 1280,
height: 720,
duration: 10,
providerSettings: {
pixverse: {
audio: true,
thinking: 'auto'
}
}
})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": "pixverse:1@7",
"positivePrompt": "A single uninterrupted 10-second talking-head science update inside an Antarctic research station ice-core archive. A middle-aged Māori woman glaciologist in a cream insulated field jacket stands chest-up between orderly stainless-steel racks of cylindrical ice samples. Frosted cyan light fills the archive while one soft amber practical light adds warmth to her face. She looks directly into the lens, speaks with calm authority, blinks naturally, and makes one restrained hand gesture toward the ice cores. Precise natural lip synchronization. She says verbatim: “This ice holds air from eight hundred thousand years ago; each trapped bubble helps us measure how Earth’s climate changed.” Documentary realism, clean institutional visual language, pale cyan, white, and warm cream palette. Locked eye-level camera with a very slow subtle push-in, shallow depth of field, stable facial features, realistic breath and fabric movement. Native audio: clear close-miked female voice with a gentle New Zealand accent, quiet ventilation hum and distant freezer compressor, no music. No captions, logos, labels, or on-screen graphics.",
"negativePrompt": "camera shake, cuts, montage, interviewer, additional people, exaggerated gestures, drifting eyes, poor lip sync, distorted mouth, facial warping, frozen expression, noisy speech, loud machinery, music, subtitles, captions, logos, watermarks, on-screen text",
"width": 1280,
"height": 720,
"duration": 10,
"providerSettings": {
"pixverse": {
"audio": True,
"thinking": "auto"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "98aac8cf-f3a4-4d47-a53c-b6c705cf0c73",
"model": "pixverse:1@7",
"positivePrompt": "A single uninterrupted 10-second talking-head science update inside an Antarctic research station ice-core archive. A middle-aged Māori woman glaciologist in a cream insulated field jacket stands chest-up between orderly stainless-steel racks of cylindrical ice samples. Frosted cyan light fills the archive while one soft amber practical light adds warmth to her face. She looks directly into the lens, speaks with calm authority, blinks naturally, and makes one restrained hand gesture toward the ice cores. Precise natural lip synchronization. She says verbatim: “This ice holds air from eight hundred thousand years ago; each trapped bubble helps us measure how Earth’s climate changed.” Documentary realism, clean institutional visual language, pale cyan, white, and warm cream palette. Locked eye-level camera with a very slow subtle push-in, shallow depth of field, stable facial features, realistic breath and fabric movement. Native audio: clear close-miked female voice with a gentle New Zealand accent, quiet ventilation hum and distant freezer compressor, no music. No captions, logos, labels, or on-screen graphics.",
"negativePrompt": "camera shake, cuts, montage, interviewer, additional people, exaggerated gestures, drifting eyes, poor lip sync, distorted mouth, facial warping, frozen expression, noisy speech, loud machinery, music, subtitles, captions, logos, watermarks, on-screen text",
"width": 1280,
"height": 720,
"duration": 10,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
}
}
]'runware run pixverse:1@7 \
positivePrompt="A single uninterrupted 10-second talking-head science update inside an Antarctic research station ice-core archive. A middle-aged Māori woman glaciologist in a cream insulated field jacket stands chest-up between orderly stainless-steel racks of cylindrical ice samples. Frosted cyan light fills the archive while one soft amber practical light adds warmth to her face. She looks directly into the lens, speaks with calm authority, blinks naturally, and makes one restrained hand gesture toward the ice cores. Precise natural lip synchronization. She says verbatim: “This ice holds air from eight hundred thousand years ago; each trapped bubble helps us measure how Earth’s climate changed.” Documentary realism, clean institutional visual language, pale cyan, white, and warm cream palette. Locked eye-level camera with a very slow subtle push-in, shallow depth of field, stable facial features, realistic breath and fabric movement. Native audio: clear close-miked female voice with a gentle New Zealand accent, quiet ventilation hum and distant freezer compressor, no music. No captions, logos, labels, or on-screen graphics." \
negativePrompt="camera shake, cuts, montage, interviewer, additional people, exaggerated gestures, drifting eyes, poor lip sync, distorted mouth, facial warping, frozen expression, noisy speech, loud machinery, music, subtitles, captions, logos, watermarks, on-screen text" \
width=1280 \
height=720 \
duration=10 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=auto{
"taskType": "videoInference",
"taskUUID": "98aac8cf-f3a4-4d47-a53c-b6c705cf0c73",
"model": "pixverse:1@7",
"positivePrompt": "A single uninterrupted 10-second talking-head science update inside an Antarctic research station ice-core archive. A middle-aged Māori woman glaciologist in a cream insulated field jacket stands chest-up between orderly stainless-steel racks of cylindrical ice samples. Frosted cyan light fills the archive while one soft amber practical light adds warmth to her face. She looks directly into the lens, speaks with calm authority, blinks naturally, and makes one restrained hand gesture toward the ice cores. Precise natural lip synchronization. She says verbatim: “This ice holds air from eight hundred thousand years ago; each trapped bubble helps us measure how Earth’s climate changed.” Documentary realism, clean institutional visual language, pale cyan, white, and warm cream palette. Locked eye-level camera with a very slow subtle push-in, shallow depth of field, stable facial features, realistic breath and fabric movement. Native audio: clear close-miked female voice with a gentle New Zealand accent, quiet ventilation hum and distant freezer compressor, no music. No captions, logos, labels, or on-screen graphics.",
"negativePrompt": "camera shake, cuts, montage, interviewer, additional people, exaggerated gestures, drifting eyes, poor lip sync, distorted mouth, facial warping, frozen expression, noisy speech, loud machinery, music, subtitles, captions, logos, watermarks, on-screen text",
"width": 1280,
"height": 720,
"duration": 10,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
}
}{
"taskType": "videoInference",
"taskUUID": "98aac8cf-f3a4-4d47-a53c-b6c705cf0c73",
"videoUUID": "181034e2-d399-458c-aede-0aaf3fe7ba45",
"videoURL": "https://vm.runware.ai/video/os/a08dlim3/ws/5/vi/181034e2-d399-458c-aede-0aaf3fe7ba45.mp4",
"seed": 1859945492,
"cost": 0.4243
}Passive Flood Gate Product Demonstration
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'Continue directly from the supplied first frame as a polished single-shot engineering product demonstration. The approaching water surge travels down the transparent-sided flume toward the loading-bay threshold. As water reaches the recessed mechanism, the visible orange floats lift and drive the stainless linkage; the brushed-aluminum flood panel rises smoothly from flush with the floor to a fully upright position. Dark compression seals engage cleanly against both side posts. Water builds against the exterior face and forms small realistic eddies while the foreground remains completely dry, clearly explaining the passive mechanism without graphics or captions. Use a slow, steady lateral dolly toward the clear inspection panel so the viewer can follow the float, linkage, rising gate, and final watertight seal in one coherent movement. Maintain accurate rigid geometry, believable water physics, cool daylight, crisp metallic surfaces, and an orange safety accent. Practical industrial documentary style, calm and confidence-building, 16:9 composition. Natural synchronized sounds of flowing water, rolling linkages, a soft mechanical latch, and room ambience.',
negativePrompt: 'People, logos, captions, diagrams, interface graphics, split screen, cuts, time lapse, handheld shake, leaking seals, flooding on the dry side, distorted machinery, bending metal, duplicated parts, impossible water motion, excessive spray, dramatic colored lighting, cyberpunk styling.',
resolution: '1080p',
duration: 8,
providerSettings: {
pixverse: {
thinking: 'enabled'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/c71a1d17-b21d-4deb-9153-13f7f901c786.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": "pixverse:1@7",
"positivePrompt": "Continue directly from the supplied first frame as a polished single-shot engineering product demonstration. The approaching water surge travels down the transparent-sided flume toward the loading-bay threshold. As water reaches the recessed mechanism, the visible orange floats lift and drive the stainless linkage; the brushed-aluminum flood panel rises smoothly from flush with the floor to a fully upright position. Dark compression seals engage cleanly against both side posts. Water builds against the exterior face and forms small realistic eddies while the foreground remains completely dry, clearly explaining the passive mechanism without graphics or captions. Use a slow, steady lateral dolly toward the clear inspection panel so the viewer can follow the float, linkage, rising gate, and final watertight seal in one coherent movement. Maintain accurate rigid geometry, believable water physics, cool daylight, crisp metallic surfaces, and an orange safety accent. Practical industrial documentary style, calm and confidence-building, 16:9 composition. Natural synchronized sounds of flowing water, rolling linkages, a soft mechanical latch, and room ambience.",
"negativePrompt": "People, logos, captions, diagrams, interface graphics, split screen, cuts, time lapse, handheld shake, leaking seals, flooding on the dry side, distorted machinery, bending metal, duplicated parts, impossible water motion, excessive spray, dramatic colored lighting, cyberpunk styling.",
"resolution": "1080p",
"duration": 8,
"providerSettings": {
"pixverse": {
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/c71a1d17-b21d-4deb-9153-13f7f901c786.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": "f8cbbc85-e6de-4c37-88bc-6bcbe451bd95",
"model": "pixverse:1@7",
"positivePrompt": "Continue directly from the supplied first frame as a polished single-shot engineering product demonstration. The approaching water surge travels down the transparent-sided flume toward the loading-bay threshold. As water reaches the recessed mechanism, the visible orange floats lift and drive the stainless linkage; the brushed-aluminum flood panel rises smoothly from flush with the floor to a fully upright position. Dark compression seals engage cleanly against both side posts. Water builds against the exterior face and forms small realistic eddies while the foreground remains completely dry, clearly explaining the passive mechanism without graphics or captions. Use a slow, steady lateral dolly toward the clear inspection panel so the viewer can follow the float, linkage, rising gate, and final watertight seal in one coherent movement. Maintain accurate rigid geometry, believable water physics, cool daylight, crisp metallic surfaces, and an orange safety accent. Practical industrial documentary style, calm and confidence-building, 16:9 composition. Natural synchronized sounds of flowing water, rolling linkages, a soft mechanical latch, and room ambience.",
"negativePrompt": "People, logos, captions, diagrams, interface graphics, split screen, cuts, time lapse, handheld shake, leaking seals, flooding on the dry side, distorted machinery, bending metal, duplicated parts, impossible water motion, excessive spray, dramatic colored lighting, cyberpunk styling.",
"resolution": "1080p",
"duration": 8,
"providerSettings": {
"pixverse": {
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/c71a1d17-b21d-4deb-9153-13f7f901c786.jpg",
"frame": "first"
}
]
}
}
]'runware run pixverse:1@7 \
positivePrompt="Continue directly from the supplied first frame as a polished single-shot engineering product demonstration. The approaching water surge travels down the transparent-sided flume toward the loading-bay threshold. As water reaches the recessed mechanism, the visible orange floats lift and drive the stainless linkage; the brushed-aluminum flood panel rises smoothly from flush with the floor to a fully upright position. Dark compression seals engage cleanly against both side posts. Water builds against the exterior face and forms small realistic eddies while the foreground remains completely dry, clearly explaining the passive mechanism without graphics or captions. Use a slow, steady lateral dolly toward the clear inspection panel so the viewer can follow the float, linkage, rising gate, and final watertight seal in one coherent movement. Maintain accurate rigid geometry, believable water physics, cool daylight, crisp metallic surfaces, and an orange safety accent. Practical industrial documentary style, calm and confidence-building, 16:9 composition. Natural synchronized sounds of flowing water, rolling linkages, a soft mechanical latch, and room ambience." \
negativePrompt="People, logos, captions, diagrams, interface graphics, split screen, cuts, time lapse, handheld shake, leaking seals, flooding on the dry side, distorted machinery, bending metal, duplicated parts, impossible water motion, excessive spray, dramatic colored lighting, cyberpunk styling." \
resolution=1080p \
duration=8 \
providerSettings.pixverse.thinking=enabled \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/c71a1d17-b21d-4deb-9153-13f7f901c786.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "f8cbbc85-e6de-4c37-88bc-6bcbe451bd95",
"model": "pixverse:1@7",
"positivePrompt": "Continue directly from the supplied first frame as a polished single-shot engineering product demonstration. The approaching water surge travels down the transparent-sided flume toward the loading-bay threshold. As water reaches the recessed mechanism, the visible orange floats lift and drive the stainless linkage; the brushed-aluminum flood panel rises smoothly from flush with the floor to a fully upright position. Dark compression seals engage cleanly against both side posts. Water builds against the exterior face and forms small realistic eddies while the foreground remains completely dry, clearly explaining the passive mechanism without graphics or captions. Use a slow, steady lateral dolly toward the clear inspection panel so the viewer can follow the float, linkage, rising gate, and final watertight seal in one coherent movement. Maintain accurate rigid geometry, believable water physics, cool daylight, crisp metallic surfaces, and an orange safety accent. Practical industrial documentary style, calm and confidence-building, 16:9 composition. Natural synchronized sounds of flowing water, rolling linkages, a soft mechanical latch, and room ambience.",
"negativePrompt": "People, logos, captions, diagrams, interface graphics, split screen, cuts, time lapse, handheld shake, leaking seals, flooding on the dry side, distorted machinery, bending metal, duplicated parts, impossible water motion, excessive spray, dramatic colored lighting, cyberpunk styling.",
"resolution": "1080p",
"duration": 8,
"providerSettings": {
"pixverse": {
"thinking": "enabled"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/c71a1d17-b21d-4deb-9153-13f7f901c786.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "f8cbbc85-e6de-4c37-88bc-6bcbe451bd95",
"videoUUID": "4b62ccaa-64f4-4ea1-bdea-5394cf5d2fc6",
"videoURL": "https://vm.runware.ai/video/os/a04d20/ws/5/vi/4b62ccaa-64f4-4ea1-bdea-5394cf5d2fc6.mp4",
"seed": 832456870,
"cost": 0.442
}Maritime Satellite Terminal Deployment 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: 'pixverse:1@7',
positivePrompt: 'Create one continuous five-second industrial product demonstration connecting the supplied closed and deployed terminal frames. Keep the camera locked and preserve the vessel deck, horizon, lighting and exact product geometry. Begin with the low weatherproof housing closed. Its two recessed latches release in sequence; the upper panels separate and hinge open with controlled damped motion. A compact telescoping mast rises vertically from inside while the folded circular antenna unfolds without intersecting the housing. The dish pivots smoothly on its gimbal, makes one small precision correction, then settles at the final upward angle shown in the last frame. Motion should feel engineered, stable and physically credible, with clean hinges, consistent scale and no loose parts. Bright neutral maritime documentary style, crisp product detail, calm blue sea softly out of focus, no people, labels, graphics or added text. Native soundscape: gentle ocean wash and distant vessel-engine hum, two firm latch clicks, quiet sealed servo whir, soft hinge movement, a precise locking clunk and one restrained electronic ready chime at full deployment.',
resolution: '720p',
duration: 5,
providerSettings: {
pixverse: {
audio: true,
thinking: 'auto'
}
},
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/466caa75-f11a-449c-95aa-05afc80c6b62.jpg',
frame: 'first'
},
{
image: 'https://assets.runware.ai/assets/inputs/0d843dd4-52ed-46cd-8c9c-09ec3b0bb1c5.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": "pixverse:1@7",
"positivePrompt": "Create one continuous five-second industrial product demonstration connecting the supplied closed and deployed terminal frames. Keep the camera locked and preserve the vessel deck, horizon, lighting and exact product geometry. Begin with the low weatherproof housing closed. Its two recessed latches release in sequence; the upper panels separate and hinge open with controlled damped motion. A compact telescoping mast rises vertically from inside while the folded circular antenna unfolds without intersecting the housing. The dish pivots smoothly on its gimbal, makes one small precision correction, then settles at the final upward angle shown in the last frame. Motion should feel engineered, stable and physically credible, with clean hinges, consistent scale and no loose parts. Bright neutral maritime documentary style, crisp product detail, calm blue sea softly out of focus, no people, labels, graphics or added text. Native soundscape: gentle ocean wash and distant vessel-engine hum, two firm latch clicks, quiet sealed servo whir, soft hinge movement, a precise locking clunk and one restrained electronic ready chime at full deployment.",
"resolution": "720p",
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": True,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/466caa75-f11a-449c-95aa-05afc80c6b62.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/0d843dd4-52ed-46cd-8c9c-09ec3b0bb1c5.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": "812e27c5-2a93-460d-be8c-040f670df11c",
"model": "pixverse:1@7",
"positivePrompt": "Create one continuous five-second industrial product demonstration connecting the supplied closed and deployed terminal frames. Keep the camera locked and preserve the vessel deck, horizon, lighting and exact product geometry. Begin with the low weatherproof housing closed. Its two recessed latches release in sequence; the upper panels separate and hinge open with controlled damped motion. A compact telescoping mast rises vertically from inside while the folded circular antenna unfolds without intersecting the housing. The dish pivots smoothly on its gimbal, makes one small precision correction, then settles at the final upward angle shown in the last frame. Motion should feel engineered, stable and physically credible, with clean hinges, consistent scale and no loose parts. Bright neutral maritime documentary style, crisp product detail, calm blue sea softly out of focus, no people, labels, graphics or added text. Native soundscape: gentle ocean wash and distant vessel-engine hum, two firm latch clicks, quiet sealed servo whir, soft hinge movement, a precise locking clunk and one restrained electronic ready chime at full deployment.",
"resolution": "720p",
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/466caa75-f11a-449c-95aa-05afc80c6b62.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/0d843dd4-52ed-46cd-8c9c-09ec3b0bb1c5.jpg",
"frame": "last"
}
]
}
}
]'runware run pixverse:1@7 \
positivePrompt="Create one continuous five-second industrial product demonstration connecting the supplied closed and deployed terminal frames. Keep the camera locked and preserve the vessel deck, horizon, lighting and exact product geometry. Begin with the low weatherproof housing closed. Its two recessed latches release in sequence; the upper panels separate and hinge open with controlled damped motion. A compact telescoping mast rises vertically from inside while the folded circular antenna unfolds without intersecting the housing. The dish pivots smoothly on its gimbal, makes one small precision correction, then settles at the final upward angle shown in the last frame. Motion should feel engineered, stable and physically credible, with clean hinges, consistent scale and no loose parts. Bright neutral maritime documentary style, crisp product detail, calm blue sea softly out of focus, no people, labels, graphics or added text. Native soundscape: gentle ocean wash and distant vessel-engine hum, two firm latch clicks, quiet sealed servo whir, soft hinge movement, a precise locking clunk and one restrained electronic ready chime at full deployment." \
resolution=720p \
duration=5 \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=auto \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/466caa75-f11a-449c-95aa-05afc80c6b62.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.image=https://assets.runware.ai/assets/inputs/0d843dd4-52ed-46cd-8c9c-09ec3b0bb1c5.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "812e27c5-2a93-460d-be8c-040f670df11c",
"model": "pixverse:1@7",
"positivePrompt": "Create one continuous five-second industrial product demonstration connecting the supplied closed and deployed terminal frames. Keep the camera locked and preserve the vessel deck, horizon, lighting and exact product geometry. Begin with the low weatherproof housing closed. Its two recessed latches release in sequence; the upper panels separate and hinge open with controlled damped motion. A compact telescoping mast rises vertically from inside while the folded circular antenna unfolds without intersecting the housing. The dish pivots smoothly on its gimbal, makes one small precision correction, then settles at the final upward angle shown in the last frame. Motion should feel engineered, stable and physically credible, with clean hinges, consistent scale and no loose parts. Bright neutral maritime documentary style, crisp product detail, calm blue sea softly out of focus, no people, labels, graphics or added text. Native soundscape: gentle ocean wash and distant vessel-engine hum, two firm latch clicks, quiet sealed servo whir, soft hinge movement, a precise locking clunk and one restrained electronic ready chime at full deployment.",
"resolution": "720p",
"duration": 5,
"providerSettings": {
"pixverse": {
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/466caa75-f11a-449c-95aa-05afc80c6b62.jpg",
"frame": "first"
},
{
"image": "https://assets.runware.ai/assets/inputs/0d843dd4-52ed-46cd-8c9c-09ec3b0bb1c5.jpg",
"frame": "last"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "812e27c5-2a93-460d-be8c-040f670df11c",
"videoUUID": "4511306c-8e5a-4e4a-8a49-23de4635783c",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/4511306c-8e5a-4e4a-8a49-23de4635783c.mp4",
"seed": 1154913583,
"cost": 0.2652
}Cinematic Time-Lapse Transformation
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'A cinematic single-shot transformation sequence beginning at an ancient jungle temple at sunrise and ending in the same composition as a neon cyberpunk ruin at night. The camera slowly pushes forward through drifting mist and floating dust motes as vines sway gently, birds scatter, light rays shift, stone surfaces gradually gain glowing circuitry, holographic signs emerge from the ruins, and the environment transitions seamlessly from warm golden dawn to moody blue-magenta neon night. Highly stable geometry, clean motion, rich atmosphere, detailed textures, dramatic lighting, cinematic realism.',
negativePrompt: 'flicker, warped architecture, camera shake, duplicated objects, deformed plants, broken perspective, chaotic motion, blurry details, low resolution, text artifacts, logos, watermarks',
width: 1280,
height: 720,
duration: 8,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
thinking: 'auto'
}
},
inputs: {
frameImages: [
{
inputImage: 'https://assets.runware.ai/assets/inputs/bcc43e08-b2e7-4a44-9c85-d7999db4a0c7.jpg',
frame: 'first'
},
{
inputImage: 'https://assets.runware.ai/assets/inputs/d9c4fa52-5b9f-4a4f-a888-968271a39ff9.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": "pixverse:1@7",
"positivePrompt": "A cinematic single-shot transformation sequence beginning at an ancient jungle temple at sunrise and ending in the same composition as a neon cyberpunk ruin at night. The camera slowly pushes forward through drifting mist and floating dust motes as vines sway gently, birds scatter, light rays shift, stone surfaces gradually gain glowing circuitry, holographic signs emerge from the ruins, and the environment transitions seamlessly from warm golden dawn to moody blue-magenta neon night. Highly stable geometry, clean motion, rich atmosphere, detailed textures, dramatic lighting, cinematic realism.",
"negativePrompt": "flicker, warped architecture, camera shake, duplicated objects, deformed plants, broken perspective, chaotic motion, blurry details, low resolution, text artifacts, logos, watermarks",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/bcc43e08-b2e7-4a44-9c85-d7999db4a0c7.jpg",
"frame": "first"
},
{
"inputImage": "https://assets.runware.ai/assets/inputs/d9c4fa52-5b9f-4a4f-a888-968271a39ff9.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": "80e699da-e6c7-4a38-bedb-b1953af46d40",
"model": "pixverse:1@7",
"positivePrompt": "A cinematic single-shot transformation sequence beginning at an ancient jungle temple at sunrise and ending in the same composition as a neon cyberpunk ruin at night. The camera slowly pushes forward through drifting mist and floating dust motes as vines sway gently, birds scatter, light rays shift, stone surfaces gradually gain glowing circuitry, holographic signs emerge from the ruins, and the environment transitions seamlessly from warm golden dawn to moody blue-magenta neon night. Highly stable geometry, clean motion, rich atmosphere, detailed textures, dramatic lighting, cinematic realism.",
"negativePrompt": "flicker, warped architecture, camera shake, duplicated objects, deformed plants, broken perspective, chaotic motion, blurry details, low resolution, text artifacts, logos, watermarks",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/bcc43e08-b2e7-4a44-9c85-d7999db4a0c7.jpg",
"frame": "first"
},
{
"inputImage": "https://assets.runware.ai/assets/inputs/d9c4fa52-5b9f-4a4f-a888-968271a39ff9.jpg",
"frame": "last"
}
]
}
}
]'runware run pixverse:1@7 \
positivePrompt="A cinematic single-shot transformation sequence beginning at an ancient jungle temple at sunrise and ending in the same composition as a neon cyberpunk ruin at night. The camera slowly pushes forward through drifting mist and floating dust motes as vines sway gently, birds scatter, light rays shift, stone surfaces gradually gain glowing circuitry, holographic signs emerge from the ruins, and the environment transitions seamlessly from warm golden dawn to moody blue-magenta neon night. Highly stable geometry, clean motion, rich atmosphere, detailed textures, dramatic lighting, cinematic realism." \
negativePrompt="flicker, warped architecture, camera shake, duplicated objects, deformed plants, broken perspective, chaotic motion, blurry details, low resolution, text artifacts, logos, watermarks" \
width=1280 \
height=720 \
duration=8 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=auto \
inputs.frameImages.0.inputImage=https://assets.runware.ai/assets/inputs/bcc43e08-b2e7-4a44-9c85-d7999db4a0c7.jpg \
inputs.frameImages.0.frame=first \
inputs.frameImages.1.inputImage=https://assets.runware.ai/assets/inputs/d9c4fa52-5b9f-4a4f-a888-968271a39ff9.jpg \
inputs.frameImages.1.frame=last{
"taskType": "videoInference",
"taskUUID": "80e699da-e6c7-4a38-bedb-b1953af46d40",
"model": "pixverse:1@7",
"positivePrompt": "A cinematic single-shot transformation sequence beginning at an ancient jungle temple at sunrise and ending in the same composition as a neon cyberpunk ruin at night. The camera slowly pushes forward through drifting mist and floating dust motes as vines sway gently, birds scatter, light rays shift, stone surfaces gradually gain glowing circuitry, holographic signs emerge from the ruins, and the environment transitions seamlessly from warm golden dawn to moody blue-magenta neon night. Highly stable geometry, clean motion, rich atmosphere, detailed textures, dramatic lighting, cinematic realism.",
"negativePrompt": "flicker, warped architecture, camera shake, duplicated objects, deformed plants, broken perspective, chaotic motion, blurry details, low resolution, text artifacts, logos, watermarks",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/bcc43e08-b2e7-4a44-9c85-d7999db4a0c7.jpg",
"frame": "first"
},
{
"inputImage": "https://assets.runware.ai/assets/inputs/d9c4fa52-5b9f-4a4f-a888-968271a39ff9.jpg",
"frame": "last"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "80e699da-e6c7-4a38-bedb-b1953af46d40",
"videoUUID": "6f24df34-b924-4132-91dd-cd3c0c9c5470",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/6f24df34-b924-4132-91dd-cd3c0c9c5470.mp4",
"seed": 1715010496,
"cost": 0.3978
}Cyberpunk Street Dialogue
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'A single-shot cinematic scene in a rain-soaked neon cyberpunk market at night. Two characters stand under a flickering holographic awning: a street-smart female smuggler in a reflective coat and a calm male android detective with subtle illuminated facial lines. The camera begins with a medium-wide shot, slowly dollies forward and arcs slightly around them as crowds and umbrellas pass in the blurred background. Wet pavement reflects pink, teal, and amber signage. Steam rises from food stalls, distant hover traffic glides overhead, and animated billboards cast shifting light across their faces. The woman speaks first with expressive natural lip movement and says, "You really crossed half the city for one missing memory chip?" The android replies with precise synchronized lip movement, "Not for the chip. For the name encoded inside it." Add natural pauses, eye contact, small head turns, coat movement in the wind, realistic rain droplets, subtle background pedestrians, and rich ambient city audio with rain, electric hum, footsteps, crowd murmur, and the two clearly audible voices. High visual stability, clean motion, realistic facial animation, dramatic contrast, premium sci-fi cinematography.',
negativePrompt: 'blurry faces, distorted hands, broken anatomy, extra limbs, duplicate people, jittery motion, camera shake, garbled text, subtitles, watermark, logo, low detail, out of sync lips, muffled speech, chaotic framing',
width: 1280,
height: 720,
duration: 8,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
thinking: 'enabled'
}
}
})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": "pixverse:1@7",
"positivePrompt": "A single-shot cinematic scene in a rain-soaked neon cyberpunk market at night. Two characters stand under a flickering holographic awning: a street-smart female smuggler in a reflective coat and a calm male android detective with subtle illuminated facial lines. The camera begins with a medium-wide shot, slowly dollies forward and arcs slightly around them as crowds and umbrellas pass in the blurred background. Wet pavement reflects pink, teal, and amber signage. Steam rises from food stalls, distant hover traffic glides overhead, and animated billboards cast shifting light across their faces. The woman speaks first with expressive natural lip movement and says, \"You really crossed half the city for one missing memory chip?\" The android replies with precise synchronized lip movement, \"Not for the chip. For the name encoded inside it.\" Add natural pauses, eye contact, small head turns, coat movement in the wind, realistic rain droplets, subtle background pedestrians, and rich ambient city audio with rain, electric hum, footsteps, crowd murmur, and the two clearly audible voices. High visual stability, clean motion, realistic facial animation, dramatic contrast, premium sci-fi cinematography.",
"negativePrompt": "blurry faces, distorted hands, broken anatomy, extra limbs, duplicate people, jittery motion, camera shake, garbled text, subtitles, watermark, logo, low detail, out of sync lips, muffled speech, chaotic framing",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"thinking": "enabled"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "fcc71725-dad7-4a0f-a025-f410e0175811",
"model": "pixverse:1@7",
"positivePrompt": "A single-shot cinematic scene in a rain-soaked neon cyberpunk market at night. Two characters stand under a flickering holographic awning: a street-smart female smuggler in a reflective coat and a calm male android detective with subtle illuminated facial lines. The camera begins with a medium-wide shot, slowly dollies forward and arcs slightly around them as crowds and umbrellas pass in the blurred background. Wet pavement reflects pink, teal, and amber signage. Steam rises from food stalls, distant hover traffic glides overhead, and animated billboards cast shifting light across their faces. The woman speaks first with expressive natural lip movement and says, \"You really crossed half the city for one missing memory chip?\" The android replies with precise synchronized lip movement, \"Not for the chip. For the name encoded inside it.\" Add natural pauses, eye contact, small head turns, coat movement in the wind, realistic rain droplets, subtle background pedestrians, and rich ambient city audio with rain, electric hum, footsteps, crowd murmur, and the two clearly audible voices. High visual stability, clean motion, realistic facial animation, dramatic contrast, premium sci-fi cinematography.",
"negativePrompt": "blurry faces, distorted hands, broken anatomy, extra limbs, duplicate people, jittery motion, camera shake, garbled text, subtitles, watermark, logo, low detail, out of sync lips, muffled speech, chaotic framing",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "enabled"
}
}
}
]'runware run pixverse:1@7 \
positivePrompt="A single-shot cinematic scene in a rain-soaked neon cyberpunk market at night. Two characters stand under a flickering holographic awning: a street-smart female smuggler in a reflective coat and a calm male android detective with subtle illuminated facial lines. The camera begins with a medium-wide shot, slowly dollies forward and arcs slightly around them as crowds and umbrellas pass in the blurred background. Wet pavement reflects pink, teal, and amber signage. Steam rises from food stalls, distant hover traffic glides overhead, and animated billboards cast shifting light across their faces. The woman speaks first with expressive natural lip movement and says, \"You really crossed half the city for one missing memory chip?\" The android replies with precise synchronized lip movement, \"Not for the chip. For the name encoded inside it.\" Add natural pauses, eye contact, small head turns, coat movement in the wind, realistic rain droplets, subtle background pedestrians, and rich ambient city audio with rain, electric hum, footsteps, crowd murmur, and the two clearly audible voices. High visual stability, clean motion, realistic facial animation, dramatic contrast, premium sci-fi cinematography." \
negativePrompt="blurry faces, distorted hands, broken anatomy, extra limbs, duplicate people, jittery motion, camera shake, garbled text, subtitles, watermark, logo, low detail, out of sync lips, muffled speech, chaotic framing" \
width=1280 \
height=720 \
duration=8 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=enabled{
"taskType": "videoInference",
"taskUUID": "fcc71725-dad7-4a0f-a025-f410e0175811",
"model": "pixverse:1@7",
"positivePrompt": "A single-shot cinematic scene in a rain-soaked neon cyberpunk market at night. Two characters stand under a flickering holographic awning: a street-smart female smuggler in a reflective coat and a calm male android detective with subtle illuminated facial lines. The camera begins with a medium-wide shot, slowly dollies forward and arcs slightly around them as crowds and umbrellas pass in the blurred background. Wet pavement reflects pink, teal, and amber signage. Steam rises from food stalls, distant hover traffic glides overhead, and animated billboards cast shifting light across their faces. The woman speaks first with expressive natural lip movement and says, \"You really crossed half the city for one missing memory chip?\" The android replies with precise synchronized lip movement, \"Not for the chip. For the name encoded inside it.\" Add natural pauses, eye contact, small head turns, coat movement in the wind, realistic rain droplets, subtle background pedestrians, and rich ambient city audio with rain, electric hum, footsteps, crowd murmur, and the two clearly audible voices. High visual stability, clean motion, realistic facial animation, dramatic contrast, premium sci-fi cinematography.",
"negativePrompt": "blurry faces, distorted hands, broken anatomy, extra limbs, duplicate people, jittery motion, camera shake, garbled text, subtitles, watermark, logo, low detail, out of sync lips, muffled speech, chaotic framing",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "enabled"
}
}
}{
"taskType": "videoInference",
"taskUUID": "fcc71725-dad7-4a0f-a025-f410e0175811",
"videoUUID": "d5e6596c-b6d1-48e3-9b13-0aa2f61966b8",
"videoURL": "https://vm.runware.ai/video/os/a23d05/ws/5/vi/d5e6596c-b6d1-48e3-9b13-0aa2f61966b8.mp4",
"seed": 1824711847,
"cost": 0.3978
}Cyberpunk Street Monologue
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'Animate the provided first-frame image into a single-shot cinematic scene. The detective looks into camera and delivers a quiet, intense monologue while subtle rain falls around her. Her lips sync naturally as she speaks, her breath visible in the cool air. The camera slowly pushes in, neon reflections shimmer across the wet street, distant vehicles glide through the background, a holographic billboard flickers, and her coat shifts gently in the wind. Maintain strong facial consistency, clean motion, realistic lighting, atmospheric depth, and immersive urban ambience with natural speech and city sound design.',
negativePrompt: 'blurry face, distorted hands, warped mouth, bad lip sync, jitter, flicker, low detail, extra people appearing, sudden camera shake, broken anatomy, text artifacts, overexposure',
width: 1280,
height: 720,
duration: 8,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
thinking: 'auto'
}
},
inputs: {
frameImages: [
{
inputImage: 'https://assets.runware.ai/assets/inputs/4d25cccd-4fa4-4cf3-a4dc-165c5981fb45.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": "pixverse:1@7",
"positivePrompt": "Animate the provided first-frame image into a single-shot cinematic scene. The detective looks into camera and delivers a quiet, intense monologue while subtle rain falls around her. Her lips sync naturally as she speaks, her breath visible in the cool air. The camera slowly pushes in, neon reflections shimmer across the wet street, distant vehicles glide through the background, a holographic billboard flickers, and her coat shifts gently in the wind. Maintain strong facial consistency, clean motion, realistic lighting, atmospheric depth, and immersive urban ambience with natural speech and city sound design.",
"negativePrompt": "blurry face, distorted hands, warped mouth, bad lip sync, jitter, flicker, low detail, extra people appearing, sudden camera shake, broken anatomy, text artifacts, overexposure",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/4d25cccd-4fa4-4cf3-a4dc-165c5981fb45.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": "4affe9f1-cb16-4487-9712-244416dbf172",
"model": "pixverse:1@7",
"positivePrompt": "Animate the provided first-frame image into a single-shot cinematic scene. The detective looks into camera and delivers a quiet, intense monologue while subtle rain falls around her. Her lips sync naturally as she speaks, her breath visible in the cool air. The camera slowly pushes in, neon reflections shimmer across the wet street, distant vehicles glide through the background, a holographic billboard flickers, and her coat shifts gently in the wind. Maintain strong facial consistency, clean motion, realistic lighting, atmospheric depth, and immersive urban ambience with natural speech and city sound design.",
"negativePrompt": "blurry face, distorted hands, warped mouth, bad lip sync, jitter, flicker, low detail, extra people appearing, sudden camera shake, broken anatomy, text artifacts, overexposure",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/4d25cccd-4fa4-4cf3-a4dc-165c5981fb45.jpg",
"frame": "first"
}
]
}
}
]'runware run pixverse:1@7 \
positivePrompt="Animate the provided first-frame image into a single-shot cinematic scene. The detective looks into camera and delivers a quiet, intense monologue while subtle rain falls around her. Her lips sync naturally as she speaks, her breath visible in the cool air. The camera slowly pushes in, neon reflections shimmer across the wet street, distant vehicles glide through the background, a holographic billboard flickers, and her coat shifts gently in the wind. Maintain strong facial consistency, clean motion, realistic lighting, atmospheric depth, and immersive urban ambience with natural speech and city sound design." \
negativePrompt="blurry face, distorted hands, warped mouth, bad lip sync, jitter, flicker, low detail, extra people appearing, sudden camera shake, broken anatomy, text artifacts, overexposure" \
width=1280 \
height=720 \
duration=8 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=auto \
inputs.frameImages.0.inputImage=https://assets.runware.ai/assets/inputs/4d25cccd-4fa4-4cf3-a4dc-165c5981fb45.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "4affe9f1-cb16-4487-9712-244416dbf172",
"model": "pixverse:1@7",
"positivePrompt": "Animate the provided first-frame image into a single-shot cinematic scene. The detective looks into camera and delivers a quiet, intense monologue while subtle rain falls around her. Her lips sync naturally as she speaks, her breath visible in the cool air. The camera slowly pushes in, neon reflections shimmer across the wet street, distant vehicles glide through the background, a holographic billboard flickers, and her coat shifts gently in the wind. Maintain strong facial consistency, clean motion, realistic lighting, atmospheric depth, and immersive urban ambience with natural speech and city sound design.",
"negativePrompt": "blurry face, distorted hands, warped mouth, bad lip sync, jitter, flicker, low detail, extra people appearing, sudden camera shake, broken anatomy, text artifacts, overexposure",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "auto"
}
},
"inputs": {
"frameImages": [
{
"inputImage": "https://assets.runware.ai/assets/inputs/4d25cccd-4fa4-4cf3-a4dc-165c5981fb45.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "4affe9f1-cb16-4487-9712-244416dbf172",
"videoUUID": "b365d0dc-1e51-48ba-ade1-3b9ff9dd59c2",
"videoURL": "https://vm.runware.ai/video/os/a02d21/ws/5/vi/b365d0dc-1e51-48ba-ade1-3b9ff9dd59c2.mp4",
"seed": 1563026224,
"cost": 0.3978
}Neon Alley Dialogue
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'A cinematic single-shot scene in a rain-soaked cyberpunk alley at night, 2 characters facing each other under flickering neon signs and drifting steam. A street detective in a wet trench coat speaks urgently to a young hacker with a glowing translucent umbrella. Camera begins with a medium-wide shot, slowly dollying forward as reflections shimmer across puddles, holographic ads pulse on brick walls, and distant traffic glows in the fog. Their mouth movements match a tense whispered conversation, with subtle head turns, blinking, breathing, natural hand gestures, and realistic emotional timing. Rich environmental audio: soft rain, distant hover traffic, humming neon, footsteps in shallow water, quiet city ambience, and synchronized dialogue. High visual stability, crisp facial detail, clean motion, dramatic rim lighting, atmospheric depth, cinematic color grading.',
negativePrompt: 'blurry faces, distorted hands, extra limbs, jittery motion, frame flicker, warped mouths, bad lip sync, duplicate characters, low detail, overexposed highlights, unreadable composition, camera shake',
width: 1280,
height: 720,
duration: 8,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
thinking: 'enabled'
}
}
})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": "pixverse:1@7",
"positivePrompt": "A cinematic single-shot scene in a rain-soaked cyberpunk alley at night, 2 characters facing each other under flickering neon signs and drifting steam. A street detective in a wet trench coat speaks urgently to a young hacker with a glowing translucent umbrella. Camera begins with a medium-wide shot, slowly dollying forward as reflections shimmer across puddles, holographic ads pulse on brick walls, and distant traffic glows in the fog. Their mouth movements match a tense whispered conversation, with subtle head turns, blinking, breathing, natural hand gestures, and realistic emotional timing. Rich environmental audio: soft rain, distant hover traffic, humming neon, footsteps in shallow water, quiet city ambience, and synchronized dialogue. High visual stability, crisp facial detail, clean motion, dramatic rim lighting, atmospheric depth, cinematic color grading.",
"negativePrompt": "blurry faces, distorted hands, extra limbs, jittery motion, frame flicker, warped mouths, bad lip sync, duplicate characters, low detail, overexposed highlights, unreadable composition, camera shake",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"thinking": "enabled"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "e037301c-ed0e-4c85-bc3e-c6a97e4f1b1d",
"model": "pixverse:1@7",
"positivePrompt": "A cinematic single-shot scene in a rain-soaked cyberpunk alley at night, 2 characters facing each other under flickering neon signs and drifting steam. A street detective in a wet trench coat speaks urgently to a young hacker with a glowing translucent umbrella. Camera begins with a medium-wide shot, slowly dollying forward as reflections shimmer across puddles, holographic ads pulse on brick walls, and distant traffic glows in the fog. Their mouth movements match a tense whispered conversation, with subtle head turns, blinking, breathing, natural hand gestures, and realistic emotional timing. Rich environmental audio: soft rain, distant hover traffic, humming neon, footsteps in shallow water, quiet city ambience, and synchronized dialogue. High visual stability, crisp facial detail, clean motion, dramatic rim lighting, atmospheric depth, cinematic color grading.",
"negativePrompt": "blurry faces, distorted hands, extra limbs, jittery motion, frame flicker, warped mouths, bad lip sync, duplicate characters, low detail, overexposed highlights, unreadable composition, camera shake",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "enabled"
}
}
}
]'runware run pixverse:1@7 \
positivePrompt="A cinematic single-shot scene in a rain-soaked cyberpunk alley at night, 2 characters facing each other under flickering neon signs and drifting steam. A street detective in a wet trench coat speaks urgently to a young hacker with a glowing translucent umbrella. Camera begins with a medium-wide shot, slowly dollying forward as reflections shimmer across puddles, holographic ads pulse on brick walls, and distant traffic glows in the fog. Their mouth movements match a tense whispered conversation, with subtle head turns, blinking, breathing, natural hand gestures, and realistic emotional timing. Rich environmental audio: soft rain, distant hover traffic, humming neon, footsteps in shallow water, quiet city ambience, and synchronized dialogue. High visual stability, crisp facial detail, clean motion, dramatic rim lighting, atmospheric depth, cinematic color grading." \
negativePrompt="blurry faces, distorted hands, extra limbs, jittery motion, frame flicker, warped mouths, bad lip sync, duplicate characters, low detail, overexposed highlights, unreadable composition, camera shake" \
width=1280 \
height=720 \
duration=8 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=enabled{
"taskType": "videoInference",
"taskUUID": "e037301c-ed0e-4c85-bc3e-c6a97e4f1b1d",
"model": "pixverse:1@7",
"positivePrompt": "A cinematic single-shot scene in a rain-soaked cyberpunk alley at night, 2 characters facing each other under flickering neon signs and drifting steam. A street detective in a wet trench coat speaks urgently to a young hacker with a glowing translucent umbrella. Camera begins with a medium-wide shot, slowly dollying forward as reflections shimmer across puddles, holographic ads pulse on brick walls, and distant traffic glows in the fog. Their mouth movements match a tense whispered conversation, with subtle head turns, blinking, breathing, natural hand gestures, and realistic emotional timing. Rich environmental audio: soft rain, distant hover traffic, humming neon, footsteps in shallow water, quiet city ambience, and synchronized dialogue. High visual stability, crisp facial detail, clean motion, dramatic rim lighting, atmospheric depth, cinematic color grading.",
"negativePrompt": "blurry faces, distorted hands, extra limbs, jittery motion, frame flicker, warped mouths, bad lip sync, duplicate characters, low detail, overexposed highlights, unreadable composition, camera shake",
"width": 1280,
"height": 720,
"duration": 8,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "enabled"
}
}
}{
"taskType": "videoInference",
"taskUUID": "e037301c-ed0e-4c85-bc3e-c6a97e4f1b1d",
"videoUUID": "944829c5-2929-4f7b-9fe4-d07172d63097",
"videoURL": "https://vm.runware.ai/video/os/a05d22/ws/5/vi/944829c5-2929-4f7b-9fe4-d07172d63097.mp4",
"seed": 61861179,
"cost": 0.3978
}Neon Rooftop Duet Nightscape
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'pixverse:1@7',
positivePrompt: 'A single-shot cinematic cyberpunk rooftop concert at midnight above a vast rain-slick megacity, two young street musicians performing under a flickering holographic billboard, one singing into a chrome microphone while the other plays a transparent neon violin, drifting steam vents, distant flying traffic, pulsing magenta and cyan reflections on wet concrete, subtle wind moving coats and hair, emotional eye contact, expressive mouth movement for lyrics, realistic hand motion, smooth dolly-in camera, dramatic atmosphere, richly layered city depth, highly coherent motion, natural environmental sound with soft rain, humming city ambience, violin performance, and clear vocal singing',
negativePrompt: 'blurry faces, extra limbs, broken fingers, frozen motion, jittery camera, duplicate characters, warped instruments, distorted mouths, subtitle text, watermark, logo, low detail, noisy frame, abrupt cuts',
width: 1280,
height: 720,
duration: 8,
seed: 85288,
providerSettings: {
pixverse: {
style: 'cyberpunk',
audio: true,
thinking: 'enabled'
}
}
})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": "pixverse:1@7",
"positivePrompt": "A single-shot cinematic cyberpunk rooftop concert at midnight above a vast rain-slick megacity, two young street musicians performing under a flickering holographic billboard, one singing into a chrome microphone while the other plays a transparent neon violin, drifting steam vents, distant flying traffic, pulsing magenta and cyan reflections on wet concrete, subtle wind moving coats and hair, emotional eye contact, expressive mouth movement for lyrics, realistic hand motion, smooth dolly-in camera, dramatic atmosphere, richly layered city depth, highly coherent motion, natural environmental sound with soft rain, humming city ambience, violin performance, and clear vocal singing",
"negativePrompt": "blurry faces, extra limbs, broken fingers, frozen motion, jittery camera, duplicate characters, warped instruments, distorted mouths, subtitle text, watermark, logo, low detail, noisy frame, abrupt cuts",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 85288,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": True,
"thinking": "enabled"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "00fa8622-053e-4705-a7f0-ba847d70bbf2",
"model": "pixverse:1@7",
"positivePrompt": "A single-shot cinematic cyberpunk rooftop concert at midnight above a vast rain-slick megacity, two young street musicians performing under a flickering holographic billboard, one singing into a chrome microphone while the other plays a transparent neon violin, drifting steam vents, distant flying traffic, pulsing magenta and cyan reflections on wet concrete, subtle wind moving coats and hair, emotional eye contact, expressive mouth movement for lyrics, realistic hand motion, smooth dolly-in camera, dramatic atmosphere, richly layered city depth, highly coherent motion, natural environmental sound with soft rain, humming city ambience, violin performance, and clear vocal singing",
"negativePrompt": "blurry faces, extra limbs, broken fingers, frozen motion, jittery camera, duplicate characters, warped instruments, distorted mouths, subtitle text, watermark, logo, low detail, noisy frame, abrupt cuts",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 85288,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "enabled"
}
}
}
]'runware run pixverse:1@7 \
positivePrompt="A single-shot cinematic cyberpunk rooftop concert at midnight above a vast rain-slick megacity, two young street musicians performing under a flickering holographic billboard, one singing into a chrome microphone while the other plays a transparent neon violin, drifting steam vents, distant flying traffic, pulsing magenta and cyan reflections on wet concrete, subtle wind moving coats and hair, emotional eye contact, expressive mouth movement for lyrics, realistic hand motion, smooth dolly-in camera, dramatic atmosphere, richly layered city depth, highly coherent motion, natural environmental sound with soft rain, humming city ambience, violin performance, and clear vocal singing" \
negativePrompt="blurry faces, extra limbs, broken fingers, frozen motion, jittery camera, duplicate characters, warped instruments, distorted mouths, subtitle text, watermark, logo, low detail, noisy frame, abrupt cuts" \
width=1280 \
height=720 \
duration=8 \
seed=85288 \
providerSettings.pixverse.style=cyberpunk \
providerSettings.pixverse.audio=true \
providerSettings.pixverse.thinking=enabled{
"taskType": "videoInference",
"taskUUID": "00fa8622-053e-4705-a7f0-ba847d70bbf2",
"model": "pixverse:1@7",
"positivePrompt": "A single-shot cinematic cyberpunk rooftop concert at midnight above a vast rain-slick megacity, two young street musicians performing under a flickering holographic billboard, one singing into a chrome microphone while the other plays a transparent neon violin, drifting steam vents, distant flying traffic, pulsing magenta and cyan reflections on wet concrete, subtle wind moving coats and hair, emotional eye contact, expressive mouth movement for lyrics, realistic hand motion, smooth dolly-in camera, dramatic atmosphere, richly layered city depth, highly coherent motion, natural environmental sound with soft rain, humming city ambience, violin performance, and clear vocal singing",
"negativePrompt": "blurry faces, extra limbs, broken fingers, frozen motion, jittery camera, duplicate characters, warped instruments, distorted mouths, subtitle text, watermark, logo, low detail, noisy frame, abrupt cuts",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 85288,
"providerSettings": {
"pixverse": {
"style": "cyberpunk",
"audio": true,
"thinking": "enabled"
}
}
}{
"taskType": "videoInference",
"taskUUID": "00fa8622-053e-4705-a7f0-ba847d70bbf2",
"videoUUID": "808ab180-30ce-4273-a4bf-c41250ff38a5",
"videoURL": "https://vm.runware.ai/video/os/a07d11/ws/5/vi/808ab180-30ce-4273-a4bf-c41250ff38a5.mp4",
"seed": 85288,
"cost": 0.3978
}