HappyHorse 1.1

HappyHorse 1.1 is Alibaba's upgraded multimodal video model for text-to-video, image-to-video, and reference-to-video generation. It improves motion continuity, prompt following, character consistency, facial texture quality, cinematic shot logic, and audio-visual synchronization over HappyHorse 1.0, making it better suited to multi-shot storytelling, multi-character scenes, close-up performance, and reference-driven production workflows.

API Reference
INTEGRATE
Complete technical specification for integration
RequestResponse
Examples4
CODE
Ready-to-use code snippets for common workflows
Guides2
LEARN
Step-by-step tutorials for advanced use cases
Paper Reef Astronaut Tailor
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:happyhorse@1.1',
positivePrompt: 'Create an 8-second reference-guided video from the first frame. A paper-reef asteroid floats above a pale turquoise planet while a calm astronaut tailor in a stitched ivory suit repairs a torn origami manta ray with glowing thread. Keep the astronaut’s face, copper shears, spool backpack, suit seams, and paper-creature shapes consistent with the supplied references. Sequence: begin on the provided wide frame; slow push-in as folded coral branches sway in zero gravity, paper fish drift past the foreground, and the tailor anchors a silver needle; cut to a close-up of focused eyes and textured fabric; cut back as the repaired manta unfolds, circles the tailor once, and scatters tiny confetti stars. Elegant stop-motion-meets-feature-film look, crisp facial texture, coherent hand motion, stable anatomy, soft pastel palette, shallow depth of field, graceful parallax, no flicker.',
resolution: '720p',
duration: 8,
seed: 42032,
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/09f5ccc8-0d33-44ec-a264-01cdb8a9c840.jpg',
frame: 'first'
}
],
referenceImages: [
'https://assets.runware.ai/assets/inputs/92b83ba0-a0e5-4e7e-bc8b-9b956f1f0289.jpg',
'https://assets.runware.ai/assets/inputs/9a479879-4816-43c8-a9c5-c632e3f14fc2.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Create an 8-second reference-guided video from the first frame. A paper-reef asteroid floats above a pale turquoise planet while a calm astronaut tailor in a stitched ivory suit repairs a torn origami manta ray with glowing thread. Keep the astronaut’s face, copper shears, spool backpack, suit seams, and paper-creature shapes consistent with the supplied references. Sequence: begin on the provided wide frame; slow push-in as folded coral branches sway in zero gravity, paper fish drift past the foreground, and the tailor anchors a silver needle; cut to a close-up of focused eyes and textured fabric; cut back as the repaired manta unfolds, circles the tailor once, and scatters tiny confetti stars. Elegant stop-motion-meets-feature-film look, crisp facial texture, coherent hand motion, stable anatomy, soft pastel palette, shallow depth of field, graceful parallax, no flicker.",
"resolution": "720p",
"duration": 8,
"seed": 42032,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/09f5ccc8-0d33-44ec-a264-01cdb8a9c840.jpg",
"frame": "first"
}
],
"referenceImages": [
"https://assets.runware.ai/assets/inputs/92b83ba0-a0e5-4e7e-bc8b-9b956f1f0289.jpg",
"https://assets.runware.ai/assets/inputs/9a479879-4816-43c8-a9c5-c632e3f14fc2.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "d9fac38e-b1d0-43f1-9581-32fe227053a6",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Create an 8-second reference-guided video from the first frame. A paper-reef asteroid floats above a pale turquoise planet while a calm astronaut tailor in a stitched ivory suit repairs a torn origami manta ray with glowing thread. Keep the astronaut’s face, copper shears, spool backpack, suit seams, and paper-creature shapes consistent with the supplied references. Sequence: begin on the provided wide frame; slow push-in as folded coral branches sway in zero gravity, paper fish drift past the foreground, and the tailor anchors a silver needle; cut to a close-up of focused eyes and textured fabric; cut back as the repaired manta unfolds, circles the tailor once, and scatters tiny confetti stars. Elegant stop-motion-meets-feature-film look, crisp facial texture, coherent hand motion, stable anatomy, soft pastel palette, shallow depth of field, graceful parallax, no flicker.",
"resolution": "720p",
"duration": 8,
"seed": 42032,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/09f5ccc8-0d33-44ec-a264-01cdb8a9c840.jpg",
"frame": "first"
}
],
"referenceImages": [
"https://assets.runware.ai/assets/inputs/92b83ba0-a0e5-4e7e-bc8b-9b956f1f0289.jpg",
"https://assets.runware.ai/assets/inputs/9a479879-4816-43c8-a9c5-c632e3f14fc2.jpg"
]
}
}
]'runware run alibaba:happyhorse@1.1 \
positivePrompt="Create an 8-second reference-guided video from the first frame. A paper-reef asteroid floats above a pale turquoise planet while a calm astronaut tailor in a stitched ivory suit repairs a torn origami manta ray with glowing thread. Keep the astronaut’s face, copper shears, spool backpack, suit seams, and paper-creature shapes consistent with the supplied references. Sequence: begin on the provided wide frame; slow push-in as folded coral branches sway in zero gravity, paper fish drift past the foreground, and the tailor anchors a silver needle; cut to a close-up of focused eyes and textured fabric; cut back as the repaired manta unfolds, circles the tailor once, and scatters tiny confetti stars. Elegant stop-motion-meets-feature-film look, crisp facial texture, coherent hand motion, stable anatomy, soft pastel palette, shallow depth of field, graceful parallax, no flicker." \
resolution=720p \
duration=8 \
seed=42032 \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/09f5ccc8-0d33-44ec-a264-01cdb8a9c840.jpg \
inputs.frameImages.0.frame=first \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/92b83ba0-a0e5-4e7e-bc8b-9b956f1f0289.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/9a479879-4816-43c8-a9c5-c632e3f14fc2.jpg{
"taskType": "videoInference",
"taskUUID": "d9fac38e-b1d0-43f1-9581-32fe227053a6",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Create an 8-second reference-guided video from the first frame. A paper-reef asteroid floats above a pale turquoise planet while a calm astronaut tailor in a stitched ivory suit repairs a torn origami manta ray with glowing thread. Keep the astronaut’s face, copper shears, spool backpack, suit seams, and paper-creature shapes consistent with the supplied references. Sequence: begin on the provided wide frame; slow push-in as folded coral branches sway in zero gravity, paper fish drift past the foreground, and the tailor anchors a silver needle; cut to a close-up of focused eyes and textured fabric; cut back as the repaired manta unfolds, circles the tailor once, and scatters tiny confetti stars. Elegant stop-motion-meets-feature-film look, crisp facial texture, coherent hand motion, stable anatomy, soft pastel palette, shallow depth of field, graceful parallax, no flicker.",
"resolution": "720p",
"duration": 8,
"seed": 42032,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/09f5ccc8-0d33-44ec-a264-01cdb8a9c840.jpg",
"frame": "first"
}
],
"referenceImages": [
"https://assets.runware.ai/assets/inputs/92b83ba0-a0e5-4e7e-bc8b-9b956f1f0289.jpg",
"https://assets.runware.ai/assets/inputs/9a479879-4816-43c8-a9c5-c632e3f14fc2.jpg"
]
}
}{
"taskType": "videoInference",
"taskUUID": "d9fac38e-b1d0-43f1-9581-32fe227053a6",
"videoUUID": "3af0a6c7-3027-4405-ad8c-8193cf4e0f0d",
"videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/3af0a6c7-3027-4405-ad8c-8193cf4e0f0d.mp4",
"seed": 42032,
"cost": 0.6823
}Porcelain Tortoise Salt Crossing
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:happyhorse@1.1',
positivePrompt: 'Cinematic wide shot on a vast white salt plain at early sunrise, using the reference image for the porcelain tortoise design and the two travelers. The colossal tortoise takes slow heavy steps, cobalt shell patterns catching warm light, tiny brass bells swaying on its harness. The two travelers walk alongside it, exchanging a brief glance and a small smile, their garments moving naturally as pale dust trails behind their boots. Camera begins low near the cracked salt surface, tracks beside the tortoise’s feet, then rises into a graceful three-quarter view that keeps the creature and both travelers in frame. Realistic facial texture, consistent character appearance, smooth motion continuity, cinematic depth of field, warm amber highlights, quiet adventurous mood.',
width: 1280,
height: 720,
duration: 8,
seed: 2458,
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/fbbb4ccb-27c5-441c-80ac-47583bc1bea9.jpg'
]
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Cinematic wide shot on a vast white salt plain at early sunrise, using the reference image for the porcelain tortoise design and the two travelers. The colossal tortoise takes slow heavy steps, cobalt shell patterns catching warm light, tiny brass bells swaying on its harness. The two travelers walk alongside it, exchanging a brief glance and a small smile, their garments moving naturally as pale dust trails behind their boots. Camera begins low near the cracked salt surface, tracks beside the tortoise’s feet, then rises into a graceful three-quarter view that keeps the creature and both travelers in frame. Realistic facial texture, consistent character appearance, smooth motion continuity, cinematic depth of field, warm amber highlights, quiet adventurous mood.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 2458,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/fbbb4ccb-27c5-441c-80ac-47583bc1bea9.jpg"
]
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "786ce088-a0c7-4b20-be80-09be104f299b",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Cinematic wide shot on a vast white salt plain at early sunrise, using the reference image for the porcelain tortoise design and the two travelers. The colossal tortoise takes slow heavy steps, cobalt shell patterns catching warm light, tiny brass bells swaying on its harness. The two travelers walk alongside it, exchanging a brief glance and a small smile, their garments moving naturally as pale dust trails behind their boots. Camera begins low near the cracked salt surface, tracks beside the tortoise’s feet, then rises into a graceful three-quarter view that keeps the creature and both travelers in frame. Realistic facial texture, consistent character appearance, smooth motion continuity, cinematic depth of field, warm amber highlights, quiet adventurous mood.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 2458,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/fbbb4ccb-27c5-441c-80ac-47583bc1bea9.jpg"
]
}
}
]'runware run alibaba:happyhorse@1.1 \
positivePrompt="Cinematic wide shot on a vast white salt plain at early sunrise, using the reference image for the porcelain tortoise design and the two travelers. The colossal tortoise takes slow heavy steps, cobalt shell patterns catching warm light, tiny brass bells swaying on its harness. The two travelers walk alongside it, exchanging a brief glance and a small smile, their garments moving naturally as pale dust trails behind their boots. Camera begins low near the cracked salt surface, tracks beside the tortoise’s feet, then rises into a graceful three-quarter view that keeps the creature and both travelers in frame. Realistic facial texture, consistent character appearance, smooth motion continuity, cinematic depth of field, warm amber highlights, quiet adventurous mood." \
width=1280 \
height=720 \
duration=8 \
seed=2458 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/fbbb4ccb-27c5-441c-80ac-47583bc1bea9.jpg{
"taskType": "videoInference",
"taskUUID": "786ce088-a0c7-4b20-be80-09be104f299b",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Cinematic wide shot on a vast white salt plain at early sunrise, using the reference image for the porcelain tortoise design and the two travelers. The colossal tortoise takes slow heavy steps, cobalt shell patterns catching warm light, tiny brass bells swaying on its harness. The two travelers walk alongside it, exchanging a brief glance and a small smile, their garments moving naturally as pale dust trails behind their boots. Camera begins low near the cracked salt surface, tracks beside the tortoise’s feet, then rises into a graceful three-quarter view that keeps the creature and both travelers in frame. Realistic facial texture, consistent character appearance, smooth motion continuity, cinematic depth of field, warm amber highlights, quiet adventurous mood.",
"width": 1280,
"height": 720,
"duration": 8,
"seed": 2458,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/fbbb4ccb-27c5-441c-80ac-47583bc1bea9.jpg"
]
}
}{
"taskType": "videoInference",
"taskUUID": "786ce088-a0c7-4b20-be80-09be104f299b",
"videoUUID": "1fd73378-5cac-4071-bdba-e8c173e70109",
"videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/1fd73378-5cac-4071-bdba-e8c173e70109.mp4",
"seed": 2458,
"cost": 0.6823
}Glass Kite Courier Chase
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:happyhorse@1.1',
positivePrompt: 'Starting from the provided first frame, create an 8-second cinematic chase across a vast white salt flat. The young courier keeps the same face, outfit, and glass kite-sled design throughout. Begin with a tight close-up of focused eyes and gloved hands on the control bar, then the camera pulls back as the translucent wings snap open and the sled glides forward. A small sand-colored fox companion leaps aboard, claws skittering on crystal struts. The courier dodges tall mirrored survey markers while distant radio towers shimmer in heat haze. Use smooth forward tracking, brief side profile motion, crisp facial texture, realistic cloth movement, sparkling reflections on the glass wings, and a final heroic wide shot as the sled arcs past the camera in a burst of salt dust. No text, no logos, no scene cuts that change the character identity.',
resolution: '720p',
duration: 8,
seed: 79172,
inputs: {
frameImages: [
{
image: 'https://assets.runware.ai/assets/inputs/92d116dd-3140-4404-9be4-28ad57e43d8f.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": "alibaba:happyhorse@1.1",
"positivePrompt": "Starting from the provided first frame, create an 8-second cinematic chase across a vast white salt flat. The young courier keeps the same face, outfit, and glass kite-sled design throughout. Begin with a tight close-up of focused eyes and gloved hands on the control bar, then the camera pulls back as the translucent wings snap open and the sled glides forward. A small sand-colored fox companion leaps aboard, claws skittering on crystal struts. The courier dodges tall mirrored survey markers while distant radio towers shimmer in heat haze. Use smooth forward tracking, brief side profile motion, crisp facial texture, realistic cloth movement, sparkling reflections on the glass wings, and a final heroic wide shot as the sled arcs past the camera in a burst of salt dust. No text, no logos, no scene cuts that change the character identity.",
"resolution": "720p",
"duration": 8,
"seed": 79172,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/92d116dd-3140-4404-9be4-28ad57e43d8f.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": "e5d22a36-ace3-46ac-a062-110adf21b124",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Starting from the provided first frame, create an 8-second cinematic chase across a vast white salt flat. The young courier keeps the same face, outfit, and glass kite-sled design throughout. Begin with a tight close-up of focused eyes and gloved hands on the control bar, then the camera pulls back as the translucent wings snap open and the sled glides forward. A small sand-colored fox companion leaps aboard, claws skittering on crystal struts. The courier dodges tall mirrored survey markers while distant radio towers shimmer in heat haze. Use smooth forward tracking, brief side profile motion, crisp facial texture, realistic cloth movement, sparkling reflections on the glass wings, and a final heroic wide shot as the sled arcs past the camera in a burst of salt dust. No text, no logos, no scene cuts that change the character identity.",
"resolution": "720p",
"duration": 8,
"seed": 79172,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/92d116dd-3140-4404-9be4-28ad57e43d8f.jpg",
"frame": "first"
}
]
}
}
]'runware run alibaba:happyhorse@1.1 \
positivePrompt="Starting from the provided first frame, create an 8-second cinematic chase across a vast white salt flat. The young courier keeps the same face, outfit, and glass kite-sled design throughout. Begin with a tight close-up of focused eyes and gloved hands on the control bar, then the camera pulls back as the translucent wings snap open and the sled glides forward. A small sand-colored fox companion leaps aboard, claws skittering on crystal struts. The courier dodges tall mirrored survey markers while distant radio towers shimmer in heat haze. Use smooth forward tracking, brief side profile motion, crisp facial texture, realistic cloth movement, sparkling reflections on the glass wings, and a final heroic wide shot as the sled arcs past the camera in a burst of salt dust. No text, no logos, no scene cuts that change the character identity." \
resolution=720p \
duration=8 \
seed=79172 \
inputs.frameImages.0.image=https://assets.runware.ai/assets/inputs/92d116dd-3140-4404-9be4-28ad57e43d8f.jpg \
inputs.frameImages.0.frame=first{
"taskType": "videoInference",
"taskUUID": "e5d22a36-ace3-46ac-a062-110adf21b124",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "Starting from the provided first frame, create an 8-second cinematic chase across a vast white salt flat. The young courier keeps the same face, outfit, and glass kite-sled design throughout. Begin with a tight close-up of focused eyes and gloved hands on the control bar, then the camera pulls back as the translucent wings snap open and the sled glides forward. A small sand-colored fox companion leaps aboard, claws skittering on crystal struts. The courier dodges tall mirrored survey markers while distant radio towers shimmer in heat haze. Use smooth forward tracking, brief side profile motion, crisp facial texture, realistic cloth movement, sparkling reflections on the glass wings, and a final heroic wide shot as the sled arcs past the camera in a burst of salt dust. No text, no logos, no scene cuts that change the character identity.",
"resolution": "720p",
"duration": 8,
"seed": 79172,
"inputs": {
"frameImages": [
{
"image": "https://assets.runware.ai/assets/inputs/92d116dd-3140-4404-9be4-28ad57e43d8f.jpg",
"frame": "first"
}
]
}
}{
"taskType": "videoInference",
"taskUUID": "e5d22a36-ace3-46ac-a062-110adf21b124",
"videoUUID": "43ae28fb-e61b-466b-be8d-23cb33ba2aa9",
"videoURL": "https://vm.runware.ai/video/os/a10dlim3/ws/5/vi/43ae28fb-e61b-466b-be8d-23cb33ba2aa9.mp4",
"seed": 79172,
"cost": 0.6823
}Saffron Moth Orchestra Procession
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'alibaba:happyhorse@1.1',
positivePrompt: 'A surreal 10-second cinematic sequence on a pale salt plain at sunrise: a young conductor in a saffron coat leads an orchestra of musicians wearing delicate ivory moth masks, each playing polished brass instruments that gleam in warm golden light. Start with a wide tracking shot revealing the procession moving in perfect rhythm across the vast white ground, then cut to a close-up of the conductor\'s focused face and tiny hand gestures, then glide past trumpet players, drummers, and a cello carried on a wheeled platform. Giant silk moth kites drift overhead, their shadows sliding across the musicians. Smooth camera movement, expressive facial texture, consistent characters, graceful choreography, soft dust trails, cinematic depth of field, warm color grade, high detail, elegant magical realism.',
width: 1280,
height: 720,
duration: 10,
seed: 74390
})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": "alibaba:happyhorse@1.1",
"positivePrompt": "A surreal 10-second cinematic sequence on a pale salt plain at sunrise: a young conductor in a saffron coat leads an orchestra of musicians wearing delicate ivory moth masks, each playing polished brass instruments that gleam in warm golden light. Start with a wide tracking shot revealing the procession moving in perfect rhythm across the vast white ground, then cut to a close-up of the conductor's focused face and tiny hand gestures, then glide past trumpet players, drummers, and a cello carried on a wheeled platform. Giant silk moth kites drift overhead, their shadows sliding across the musicians. Smooth camera movement, expressive facial texture, consistent characters, graceful choreography, soft dust trails, cinematic depth of field, warm color grade, high detail, elegant magical realism.",
"width": 1280,
"height": 720,
"duration": 10,
"seed": 74390
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "videoInference",
"taskUUID": "8b05dc89-cb09-4966-9479-513831ec1ad7",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "A surreal 10-second cinematic sequence on a pale salt plain at sunrise: a young conductor in a saffron coat leads an orchestra of musicians wearing delicate ivory moth masks, each playing polished brass instruments that gleam in warm golden light. Start with a wide tracking shot revealing the procession moving in perfect rhythm across the vast white ground, then cut to a close-up of the conductor's focused face and tiny hand gestures, then glide past trumpet players, drummers, and a cello carried on a wheeled platform. Giant silk moth kites drift overhead, their shadows sliding across the musicians. Smooth camera movement, expressive facial texture, consistent characters, graceful choreography, soft dust trails, cinematic depth of field, warm color grade, high detail, elegant magical realism.",
"width": 1280,
"height": 720,
"duration": 10,
"seed": 74390
}
]'runware run alibaba:happyhorse@1.1 \
positivePrompt="A surreal 10-second cinematic sequence on a pale salt plain at sunrise: a young conductor in a saffron coat leads an orchestra of musicians wearing delicate ivory moth masks, each playing polished brass instruments that gleam in warm golden light. Start with a wide tracking shot revealing the procession moving in perfect rhythm across the vast white ground, then cut to a close-up of the conductor's focused face and tiny hand gestures, then glide past trumpet players, drummers, and a cello carried on a wheeled platform. Giant silk moth kites drift overhead, their shadows sliding across the musicians. Smooth camera movement, expressive facial texture, consistent characters, graceful choreography, soft dust trails, cinematic depth of field, warm color grade, high detail, elegant magical realism." \
width=1280 \
height=720 \
duration=10 \
seed=74390{
"taskType": "videoInference",
"taskUUID": "8b05dc89-cb09-4966-9479-513831ec1ad7",
"model": "alibaba:happyhorse@1.1",
"positivePrompt": "A surreal 10-second cinematic sequence on a pale salt plain at sunrise: a young conductor in a saffron coat leads an orchestra of musicians wearing delicate ivory moth masks, each playing polished brass instruments that gleam in warm golden light. Start with a wide tracking shot revealing the procession moving in perfect rhythm across the vast white ground, then cut to a close-up of the conductor's focused face and tiny hand gestures, then glide past trumpet players, drummers, and a cello carried on a wheeled platform. Giant silk moth kites drift overhead, their shadows sliding across the musicians. Smooth camera movement, expressive facial texture, consistent characters, graceful choreography, soft dust trails, cinematic depth of field, warm color grade, high detail, elegant magical realism.",
"width": 1280,
"height": 720,
"duration": 10,
"seed": 74390
}{
"taskType": "videoInference",
"taskUUID": "8b05dc89-cb09-4966-9479-513831ec1ad7",
"videoUUID": "299f1c1b-4fc3-4f01-a13d-6bb1ab880168",
"videoURL": "https://vm.runware.ai/video/os/a02d21/ws/5/vi/299f1c1b-4fc3-4f01-a13d-6bb1ab880168.mp4",
"seed": 74390,
"cost": 0.8503
}