Muapi combines video-to-video restyling, extension, reframing, motion control, captions, clipping, combining, translation, and watermark removal behind one API. Send a source video and model-specific instructions, then use the standard submit-and-poll flow.
Restyle an existing video while preserving its motion and structure.
Change the look or content of a reference video from a natural-language prompt.
Modify attire, appearance, or other visual attributes with text commands.
Continue a clip with a cinematic extension generated from its last frame.
Continue an existing clip while keeping source style and motion consistent.
Expand or change a video's aspect ratio without a naive crop.
Track the subject while cropping a chosen segment to a target aspect ratio.
Control dolly, pan, and orbit camera movement on existing footage.
Add animated captions in multiple languages and visual themes.
Extract engaging short clips and highlights from long-form video.
Join multiple clips in order into one full-length video.
Translate video into 175+ languages with voice cloning and synchronized lipsync.
Remove watermarks, logos, captions, or unwanted text from video.
Low-cost watermark removal for short clips.
AI video editing is broader than trimming. Muapi covers instruction edits that change the visual world, extension models that continue a shot, reframing tools that adapt aspect ratio, motion-control tools, captioning and clipping utilities, and translation or watermark-removal workflows.
Every tool uses the same broad integration pattern: provide a public video URL or upload a file, pass the fields required by the selected model, receive a request ID, and poll for the resulting video.
Change a scene's season, lighting, wardrobe, subject, or visual style with a natural-language prompt.
Generate a continuation from the last frame when a shot needs more duration.
Adapt landscape footage to vertical or square formats while tracking the subject instead of simply cropping.
Apply precise camera-path or performance-transfer controls to existing footage.
Add animated captions or extract short-form highlights from long-form video.
Translate dialogue with synchronized lipsync or remove permitted watermarks and unwanted overlays.
| Tool | Mode | Price | Best For |
|---|---|---|---|
| Runway Aleph | Instruction Edit | $0.20/generation | Restyling existing footage |
| Seedance 2.5 Extend | Extend | $1.70/generation | Cinematic shot continuation |
| Luma Flash Reframe | Reframe | $0.35/generation | Social aspect-ratio conversion |
| AI Captions | Captions | $0.20/generation | Animated subtitles |
| HeyGen Video Translate | Translation | $0.25/generation | Multilingual talking video |
Input fields vary by tool. Check the selected model's Playground schema before sending a production request.
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/input.mp4",
"prompt": "turn the daytime street scene into a rainy night scene"
}'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/input.mp4",
"prompt": "turn the daytime street scene into a rainy night scene",
},
)
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())Yes. Instruction-edit models use the source video to preserve composition and motion while the prompt describes the visual change.
Yes. Use a video-extension model such as Seedance 2.5 Video Extend or PixVerse V6 Extend.
Yes. Reframe tools track the subject and expand or crop the composition for a new aspect ratio.
HeyGen Video Translate combines voice translation, voice cloning, and synchronized lipsync in one call.
Yes. Muapi uses one API key, one request-and-poll pattern, and pay-per-generation billing across the catalog.