Muapi's video-to-video models take an existing clip and transform it — restyle it from a prompt, extend it past its original end, reframe its aspect ratio, apply precise camera motion, or turn it into captioned short-form clips — instead of generating a new video from scratch. Face swap, background removal, lipsync, and upscaling are related video-to-video tasks with their own dedicated pages, linked below.
Transforms an existing video into a new visual style or scene while preserving motion and structure — apply artistic looks, change season, or swap subjects.
Edits an input video from a natural-language prompt — the reference video drives subject identity, composition, and motion while the prompt drives the change.
Modifies an existing video using simple text commands — change attire, character appearance, or other visual attributes.
Extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt.
Continues an existing clip past its original end point, keeping style and motion consistent with the source.
Intelligently expands or adjusts a video's aspect ratio — turn a landscape clip into a vertical one without a naive crop.
Automatically crops and reframes a specific video segment (start_time/end_time) to a target aspect ratio using AI subject tracking.
The highest level of camera-path and motion control for professional workflows — precise dolly, pan, and orbit moves on existing footage.
Adds AI-generated animated captions to any video, with multiple languages and viral caption themes.
Converts long-form video into engaging short clips using AI-driven highlight extraction — request a specific number of highlights.
Combines multiple short clips, in order, into a single seamless full-length video.
Converts a video into 175+ languages with synchronized voice translation, AI voice cloning, and accurate lip sync in one call.
Flagship watermark removal — designed to remove Sora 2 watermarks, logos, captions, and unwanted text from a video.
Cheapest watermark removal option in the lineup.
Instruction edits (Runway Aleph, Seedance 2.5 Video Edit, Wan 2.2 Edit Video) restyle or transform a video from a text prompt while preserving its motion and structure. Extension (Seedance 2.5 Video Extend, PixVerse V6 Extend) continues a clip past its original end point, driven by its last frame plus a prompt. Reframing (Luma Flash Reframe, Autocrop) changes a video's aspect ratio intelligently, rather than cropping content out. Motion control (Kling v3.0 Pro Motion Control) applies precise camera-path direction to existing footage. Captions and clipping (AI Captions, AI Clipping) turn long-form footage into captioned, highlight-driven short clips. Utilities (Video Combiner, HeyGen Video Translate, AI Video Watermark Remover) stitch clips together, dub a video into another language, or strip a Sora 2 watermark, logo, or unwanted text from an existing clip.
Muapi exposes 70+ video-to-video models — Runway, Kling, Seedance, Wan, PixVerse, Luma, HeyGen, and more — through the same unified REST pattern: one API key, one request/poll flow, pay-per-generation pricing with no subscription.
A few adjacent video-to-video capabilities have their own dedicated pages rather than being duplicated here: face swap (replacing a face throughout a clip), background removal (frame-accurate matting), lipsync (re-syncing mouth movements to new audio), and video upscaling (resolution enhancement).
start_time/end_time range plus a target aspect_ratio, using AI subject tracking to keep the subject in frame.num_highlights, or set return_coordinates_only to get timestamps/crop coordinates back instead of rendered clips, useful for a custom editing pipeline.POST /api/v1/upload_file, or use any publicly reachable URL.POST /api/v1/{model-slug} with video_url and the fields that model supports (prompt, aspect_ratio, language, etc.).GET /api/v1/predictions/{request_id}/result until status is completed, then download the result.curl -X POST https://api.muapi.ai/api/v1/runway-aleph-v2v \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"video_url": "https://example.com/source-clip.mp4",
"prompt": "restyle as a golden-hour cinematic look",
"aspect_ratio": "16:9"
}'import requests
response = requests.post(
"https://api.muapi.ai/api/v1/runway-aleph-v2v",
headers={"x-api-key": "YOUR_API_KEY"},
json={
"video_url": "https://example.com/source-clip.mp4",
"prompt": "restyle as a golden-hour cinematic look",
"aspect_ratio": "16:9",
},
)
request_id = response.json()["request_id"]
result = requests.get(
f"https://api.muapi.ai/api/v1/predictions/{request_id}/result",
headers={"x-api-key": "YOUR_API_KEY"},
)
print(result.json())An instruction edit (Runway Aleph, Seedance 2.5 Video Edit, Wan 2.2 Edit Video) restyles or transforms the existing footage from a prompt. Video extension (Seedance 2.5 Video Extend, PixVerse V6 Extend) continues the clip past its original end point instead of changing what's already there.
Yes — Luma Flash Reframe intelligently expands the frame to a new aspect ratio, and Autocrop uses AI subject tracking to reframe a specific segment while keeping the subject in view.
Yes, but they have their own dedicated pages — see Face Swap API and Background Remover API — rather than being duplicated on this page.
Yes — AI Clipping extracts a requested number of highlight segments from long-form footage, and can return either rendered clips or just timestamp/crop coordinates for a custom pipeline.
Yes — HeyGen Video Translate converts a video into 175+ languages with synchronized voice translation, AI voice cloning, and lip sync in one call.
Yes — AI Video Watermark Remover is built specifically for Sora 2 watermarks, logos, captions, and unwanted text; Seedance 2 Watermark Remover is a cheaper alternative for the same task.
Yes. Sign up at muapi.ai, create an API key from your dashboard, and start calling any video-editing model immediately — no waitlist required.