Models/AI Video Editing API

AI Video Editing API Indonesia | MuAPI

Live14 video-editing tools

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.

14 of 14 tools
RunwayInstruction Edit

Runway Aleph

Restyle an existing video while preserving its motion and structure.

Video in, video out
$0.20/generation
Try Tool
ByteDanceInstruction Edit

Seedance 2.5 Video Edit

Change the look or content of a reference video from a natural-language prompt.

Video in, video out
$1.70/generation
Try Tool
AlibabaInstruction Edit

Wan 2.2 Edit Video

Modify attire, appearance, or other visual attributes with text commands.

Video in, video out
$0.30/generation
Try Tool
ByteDanceExtend

Seedance 2.5 Video Extend

Continue a clip with a cinematic extension generated from its last frame.

Video in, video out
$1.70/generation
Try Tool
PixVerseExtend

PixVerse V6 Extend

Continue an existing clip while keeping source style and motion consistent.

Video in, video out
$0.295/generation
Try Tool
LumaReframe

Luma Flash Reframe

Expand or change a video's aspect ratio without a naive crop.

Video in, video out
$0.35/generation
Try Tool
MuapiReframe

Autocrop

Track the subject while cropping a chosen segment to a target aspect ratio.

Video in, video out
$0.05/generation
Try Tool
KuaishouMotion Control

Kling v3.0 Pro Motion Control

Control dolly, pan, and orbit camera movement on existing footage.

Video in, video out
$0.16/sec
Try Tool
MuapiCaptions

AI Captions

Add animated captions in multiple languages and visual themes.

Video in, video out
$0.20/generation
Try Tool
MuapiClipping

AI Clipping

Extract engaging short clips and highlights from long-form video.

Video in, video out
$0.50/generation
Try Tool
MuapiUtility

Video Combiner

Join multiple clips in order into one full-length video.

Video in, video out
$0.05/generation
Try Tool
HeyGenTranslation

HeyGen Video Translate

Translate video into 175+ languages with voice cloning and synchronized lipsync.

Video in, video out
$0.25/generation
Try Tool
MuapiUtility

AI Video Watermark Remover

Remove watermarks, logos, captions, or unwanted text from video.

Video in, video out
$0.065 flat
Try Tool
ByteDanceUtility

Seedance 2 Watermark Remover

Low-cost watermark removal for short clips.

Video in, video out
$0.025 flat
Try Tool

Six Ways to Edit an Existing Video

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.

Key Capabilities

Instruction-Based Restyling

Change a scene's season, lighting, wardrobe, subject, or visual style with a natural-language prompt.

Video Extension

Generate a continuation from the last frame when a shot needs more duration.

Smart Reframing

Adapt landscape footage to vertical or square formats while tracking the subject instead of simply cropping.

Motion Control

Apply precise camera-path or performance-transfer controls to existing footage.

Captions and Highlights

Add animated captions or extract short-form highlights from long-form video.

Translation and Cleanup

Translate dialogue with synchronized lipsync or remove permitted watermarks and unwanted overlays.

Video Editing Tool Comparison

ToolModePriceBest For
Runway AlephInstruction Edit$0.20/generationRestyling existing footage
Seedance 2.5 ExtendExtend$1.70/generationCinematic shot continuation
Luma Flash ReframeReframe$0.35/generationSocial aspect-ratio conversion
AI CaptionsCaptions$0.20/generationAnimated subtitles
HeyGen Video TranslateTranslation$0.25/generationMultilingual talking video

Input fields vary by tool. Check the selected model's Playground schema before sending a production request.

How to Call a Video Editing Model

  1. Host the source video. Upload through POST /api/v1/upload_file or use a publicly reachable video URL.
  2. Choose the edit operation. Select an instruction, extension, reframe, motion-control, caption, clipping, translation, or cleanup tool.
  3. Submit the request. Call POST /api/v1/{model-slug} with video_url, prompt, and the model-specific fields.
  4. Poll and download. Poll GET /api/v1/predictions/{request_id}/result until completed, then persist the output.
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())

Frequently Asked Questions

Can I restyle a video without changing its motion?

Yes. Instruction-edit models use the source video to preserve composition and motion while the prompt describes the visual change.

Can I extend a clip past its original ending?

Yes. Use a video-extension model such as Seedance 2.5 Video Extend or PixVerse V6 Extend.

Can I convert landscape video to vertical?

Yes. Reframe tools track the subject and expand or crop the composition for a new aspect ratio.

Does video translation include lipsync?

HeyGen Video Translate combines voice translation, voice cloning, and synchronized lipsync in one call.

Can I call these tools with one API key?

Yes. Muapi uses one API key, one request-and-poll pattern, and pay-per-generation billing across the catalog.