Seedance 1.5 Pro Fast Image-to-Video transforms a single image (plus optional text prompt) into cinematic, live-action-leaning clips while preserving subject identity, composition, and first-frame fidelity. Built for stable production use with a ready-to-use REST API, no cold starts, and predictable pricing.
Bezczynny
$0.2za uruchomienie·~50 / $10
https://s.mj.run/ymiKGXW-z84 futuristic orbital living room interior, elegant spacefaring habitat with sweeping arched panoramic window, vast luminous planet filling the sky, layered moons, glowing atmospheric bands, soft billowing cloud ocean below, ethereal horizon light preserve original composition, architecture, furniture placement, scale, and mood, same viewpoint and framing, same dainty and intimate design language slightly brighter exposure for print, lifted midtones, richer color saturation without exaggeration, enhanced blues, teals, and warm gold highlights, pearlescent reflections, subtle neon accents, soft cinematic glow volumetric sunlight diffused through clouds, gentle bloom, high dynamic range, no crushed blacks, no harsh contrast, no overexposure poetic, serene, imaginative, cinematic sci-fi realism, futuristic luxury, contemplative atmosphere, ultra-detailed textures, believable materials epic sci-fi concept art, cinematic matte painting, octane render quality, unreal engine realism, filmic color grading
A Viking warrior tracking a wolf thought the snow. With axe and shield. A wolf pelt on his back. Warrior getting ready to strike
realistic flame illumination. Environmental realism: heat distortion above fire, drifting smoke, dust and sand texture, distant rocky desert horizon. Editorial cinematic vocabulary: political fashion editorial, indie film realism, symbolic composition, controlled chaos. Composition rules: centered subject dominance, strong vertical symmetry, deep background separation. hyperrealistic detail, filmic grain, volumetric smoke, dynamic fire light, tactile fabric textures, tonal contrast, natural imperfection, cinematic stillness
A robot wearing glasses, Standing alone in a Japanese school hallway at midnight, holding two red balloons. He is smiling with an eerie and unsettling expression. Long narrow corridor, dim fluorescent lights, closed classroom doors, deep shadows, quiet and tense atmosphere.
Two blond women, ultra realistic, with straight hair, young, beautiful, classy and stylish women walking down the street with tennis rackets. Women are coming from tennis practice. One lady is dressed in all white and other lady is dressed in pink, both wearing white tennis shoes. Both ladies wear sunglasses. In the back of photo there are palms. It is sunny day. Cinematic lighting, kodak film look, soft grain
Seedance V1.5 Pro Fast (Image-to-Video) generates short, cinematic clips from a text prompt + a first-frame image. It’s built for rapid iteration while keeping strong subject consistency, coherent motion, and a polished, live-action–leaning look.
Use it to animate a keyframe: keep the composition and identity from the input image, then direct motion, camera behavior, and style with your prompt.
Image-anchored animation Animates from a single reference image while preserving subject, lighting, and composition.
Prompt-guided motion + camera Responds well to shot-style prompts describing what moves and how the camera behaves (dolly-in, orbit, locked-off, handheld feel).
Short-form duration control Designed for concise, shot-based clips with controllable duration.
Framing control via aspect ratio Supports common aspect ratios for vertical, square, and widescreen delivery.
Optional audio generation Toggle generate_audio on/off depending on whether you want sound included.
Seeded iteration Fix seed to compare prompt tweaks fairly and reduce randomness between runs.
| Parameter | Description |
|---|---|
| prompt* | Text direction for the shot (subject + motion + camera + look). |
| image* | First-frame reference image that anchors composition and identity. |
| last_image | Optional ending frame to steer the final composition (if supported by the endpoint). |
| aspect_ratio | Output framing (e.g., 21:9, 16:9, 4:3, 1:1, 3:4, 9:16). |
| duration | Output duration in seconds (available values depend on the endpoint UI/validator). |
| resolution | Output resolution: 720p or 1080p. |
| generate_audio | Whether to generate audio (true/false). |
| camera_fixed | Whether to lock camera position (true/false). |
| seed | Random seed (-1 for random; fixed integer for reproducible results). |
A reliable structure:
Example:
Futuristic orbital living room interior. Soft sunlight, vast luminous planet outside the panoramic window. Slow dolly-in, subtle floating dust, gentle parallax, cinematic color grade, calm mood.
Practical tips:
| Resolution | Generate audio | Price per 5 seconds | Price per second |
|---|---|---|---|
| 720p | true | $0.20 | $0.04 |
| 720p | false | $0.10 | $0.02 |
| 1080p | true | $0.30 | $0.06 |
| 1080p | false | $0.15 | $0.03 |
| Duration | Resolution | Generate audio | Cost per run |
|---|---|---|---|
| 5s | 720p | true | $0.20 |
| 5s | 720p | false | $0.10 |
| 10s | 720p | true | $0.40 |
| 10s | 1080p | true | $0.60 |
| 12s | 1080p | false | $0.36 |
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/bytedance/seedance-v1.5-pro/image-to-video-fast with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Seedance v1.5 Pro Image To Video Fast below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/bytedance/seedance-v1.5-pro/image-to-video-fast" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "21:9",
"duration": 5,
"resolution": "720p",
"generate_audio": true,
"camera_fixed": false,
"seed": -1
}'
# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
-H "Authorization: Bearer $WAVESPEED_API_KEY"
# When status is "completed", read the output from data.outputs[0].// npm install wavespeed
const WaveSpeed = require('wavespeed');
const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env
const result = await client.run("bytedance/seedance-v1.5-pro/image-to-video-fast", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "21:9",
"duration": 5,
"resolution": "720p",
"generate_audio": true,
"camera_fixed": false,
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
"bytedance/seedance-v1.5-pro/image-to-video-fast",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"image": "https://example.com/your-input.jpg",
"aspect_ratio": "21:9",
"duration": 5,
"resolution": "720p",
"generate_audio": true,
"camera_fixed": false,
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputSeedance v1.5 Pro Image To Video Fast is a ByteDance model for video generation from images, exposed as a REST API on WaveSpeedAI. Seedance 1.5 Pro Fast Image-to-Video transforms a single image (plus optional text prompt) into cinematic, live-action-leaning clips while preserving subject identity, composition, and first-frame fidelity. Built for stable production use with a ready-to-use REST API, no cold starts, and predictable pricing. You can call it programmatically or try it from the playground above.
POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/bytedance/bytedance-seedance-v1.5-pro-image-to-video-fast.
Seedance v1.5 Pro Image To Video Fast starts at $0.20 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.
Key inputs: `prompt`, `image`, `aspect_ratio`, `resolution`, `duration`, `seed`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/bytedance/bytedance-seedance-v1.5-pro-image-to-video-fast.
Average end-to-end generation time on WaveSpeedAI is around 230 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.
Commercial usage rights depend on the model's license, set by its provider (ByteDance). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.