WAN 2.1 V2V 480p LoRA generates unlimited 480p video-to-video edits with custom LoRA support for tailored styles. Ready-to-use REST inference API, best performance, no coldstarts, affordable pricing.
Idle
$0.2per run·~50 / $10
The family of three just took a selfie. They lean in together, smiling and relaxed. The daughter holds the phone and shows the screen. All three look at it with interest. They laugh softly, pointing at the photo. Their faces are close, full of warmth. The background is still the same scenic place. Candid, joyful, cinematic style
An orca breaches Arctic waters. Slow 360° orbital camera sweep around the whale. Crystal-clear sea spray hangs in the air. Soft pastel polar sunset light lights the scene. High-definition visuals, cinematic HDR.
A figure runs along a cliff edge at sunset. Drone-style overhead aerial dolly‑out reveals sweeping coastline. Warm golden hour lighting, crashing waves, wind-flattened grass. High-resolution realism, cinematic scale.
Golden sunlight flickers through the trees as a deer dashes through a dense forest. The camera chases low from behind, dodging between trunks. Dust and pollen glow in the backlight. Leaves swirl in the air. High frame-rate motion blur, natural tones, immersive movement.
The petals start to fall around her as she slowly walks along the path, her skirt and hair fluttering softly. The sun glimmers through the branches, casting warm highlights on the scene as she pauses to look up at the sky.
An elegant young man walking confidently through an urban street at dusk, realistic textures on his leather jacket, subtle facial expressions, soft city lights reflecting on wet pavement, natural human motion captured in smooth video frames, slightly muted color palette with warm tones, crisp detail suitable for cinematic video scenes.
A majestic waterfall cascades down a cliff, water splashing and mist rising, sunlight piercing through the vapor to form a rainbow, camera slowly pushes in, cinematic, ultra-wide angle, 4K, hyper-detailed.
The camera slowly pans as the girl walks along the rooftop edge, her hair swaying gently in the breeze. The city lights begin to flicker on as twilight deepens, creating a sense of quiet solitude. The sky turns from orange to deep purple.
A young child laughs with pure joy as they chase shimmering soap bubbles in a sunny park. The camera follows them at a low angle, capturing their delighted expression as they reach out to pop a bubble. Vibrant colors, shallow depth of field, slow motion as a bubble pops.
A medieval knight in ornate steel armor stands in a dimly lit armory. Sunbeams cut through a high window. He slowly lowers his helmet into place, his eyes filled with determination visible for a moment before disappearing into shadow. Extreme close-up, slow motion, dramatic chiaroscuro lighting, cinematic, 8K.
Wan 2.1 V2V 480p LoRA is a video-to-video model designed for prompt-guided edits while preserving the original motion and timing of an input video. Upload a source video, describe what should change, and tune the edit strength to control how closely the output follows the original footage. It supports up to 3 LoRAs to enforce a consistent style, character look, or branded aesthetic across the transformed clip.
| Duration | Price per video |
|---|---|
| 5s | $0.20 |
| 10s | $0.30 |
LoRA (up to 3 items):
loras: list of LoRA entries (max 3)
path: owner/model-name or a direct.safetensors URL
scale: LoRA strength
To get stable edits, write prompts that separate “preserve” from “change”:
Template: Keep the same camera motion and timing from the input video. Change [style/lighting/wardrobe/environment]. Keep faces natural and consistent. Avoid flicker and warping.
Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.1/v2v-480p-lora 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 Wan 2.1 v2v 480p Lora below.
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/wan-2.1/v2v-480p-lora" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $WAVESPEED_API_KEY" \
-d '{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"video": "https://example.com/your-input.mp4",
"loras": [
{
"path": "motimalu/wan-flat-color-v2",
"scale": 1
}
],
"negative_prompt": "blurry, low quality, distorted",
"num_inference_steps": 30,
"duration": 5,
"strength": 0.9,
"guidance_scale": 5,
"flow_shift": 3,
"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(" wavespeed-ai/wan-2.1/v2v-480p-lora", {
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"video": "https://example.com/your-input.mp4",
"loras": [
{
"path": "motimalu/wan-flat-color-v2",
"scale": 1
}
],
"negative_prompt": "blurry, low quality, distorted",
"num_inference_steps": 30,
"duration": 5,
"strength": 0.9,
"guidance_scale": 5,
"flow_shift": 3,
"seed": -1
});
console.log(result.outputs[0]); // → URL of the generated output# pip install wavespeed
import wavespeed
output = wavespeed.run(
" wavespeed-ai/wan-2.1/v2v-480p-lora",
{
"prompt": "A cinematic shot of a city at sunset, soft golden light",
"video": "https://example.com/your-input.mp4",
"loras": [
{
"path": "motimalu/wan-flat-color-v2",
"scale": 1
}
],
"negative_prompt": "blurry, low quality, distorted",
"num_inference_steps": 30,
"duration": 5,
"strength": 0.9,
"guidance_scale": 5,
"flow_shift": 3,
"seed": -1
}
)
print(output["outputs"][0]) # → URL of the generated outputWan 2.1 v2v 480p Lora is a wavespeed Ai model for AI inference, exposed as a REST API on WaveSpeedAI. WAN 2.1 V2V 480p LoRA generates unlimited 480p video-to-video edits with custom LoRA support for tailored styles. Ready-to-use REST inference API, best performance, no coldstarts, affordable 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/wavespeed-ai/wan-2.1-v2v-480p-lora.
Wan 2.1 v2v 480p Lora 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`, `video`, `duration`, `seed`, `guidance_scale`, `num_inference_steps`. 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/wavespeed-ai/wan-2.1-v2v-480p-lora.
Average end-to-end generation time on WaveSpeedAI is around 92 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 ( wavespeed Ai). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.