Models/AI Video Editing API

AI Video Editing API — Restyle, Extend, Reframe, and Clip

Live70+ video-to-video models

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.

✏️ Instruction Edit3 models
Runway

Runway Aleph

Transforms an existing video into a new visual style or scene while preserving motion and structure — apply artistic looks, change season, or swap subjects.

Video in
$0.20/generation
Try Model
ByteDance

Seedance 2.5 Video Edit

Edits an input video from a natural-language prompt — the reference video drives subject identity, composition, and motion while the prompt drives the change.

Video in
$1.70/generation (720p)
Try Model
Alibaba

Wan 2.2 Edit Video

Modifies an existing video using simple text commands — change attire, character appearance, or other visual attributes.

Video in
$0.30/generation
Try Model
➡️ Extend2 models
ByteDance

Seedance 2.5 Video Extend

Extends an input video with a new cinematic continuation generated from its last frame and a natural-language prompt.

Video in
$1.70/generation (720p)
Try Model
PixVerse

PixVerse V6 Extend

Continues an existing clip past its original end point, keeping style and motion consistent with the source.

Video in
$0.295/generation
Try Model
🖼️ Reframe2 models
Luma

Luma Flash Reframe

Intelligently expands or adjusts a video's aspect ratio — turn a landscape clip into a vertical one without a naive crop.

Video in
$0.35/generation
Try Model
Muapi

Autocrop

Automatically crops and reframes a specific video segment (start_time/end_time) to a target aspect ratio using AI subject tracking.

Video in
$0.05/generation
Try Model
🎥 Motion Control1 model
Kuaishou

Kling v3.0 Pro Motion Control

The highest level of camera-path and motion control for professional workflows — precise dolly, pan, and orbit moves on existing footage.

Video in
$0.16/sec
Try Model
✂️ Captions & Clipping2 models
Muapi

AI Captions

Adds AI-generated animated captions to any video, with multiple languages and viral caption themes.

Video in
$0.20/generation
Try Model
Muapi

AI Clipping

Converts long-form video into engaging short clips using AI-driven highlight extraction — request a specific number of highlights.

Video in
$0.50/generation
Try Model
🛠 Utilities4 models
Muapi

Video Combiner

Combines multiple short clips, in order, into a single seamless full-length video.

Video in
$0.05/generation
Try Model
HeyGen

HeyGen Video Translate

Converts a video into 175+ languages with synchronized voice translation, AI voice cloning, and accurate lip sync in one call.

Video in
$0.25/generation
Try Model
Muapi

AI Video Watermark Remover

Flagship watermark removal — designed to remove Sora 2 watermarks, logos, captions, and unwanted text from a video.

Video in
$0.065 flat (≤5s), then $0.013/sec
Try Model
ByteDance

Seedance 2 Watermark Remover

Cheapest watermark removal option in the lineup.

Video in
$0.025 flat (≤5s), then $0.005/sec
Try Model

Six Ways to Edit an Existing Video

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.

Related Video-to-Video Tasks

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).

Prompt Structure and Input Handling

  • Instruction-edit prompts should describe the change, not the whole scene — the source video already fixes subject identity, composition, and motion; the prompt drives what changes on top of that.
  • Extension models use the source video's last frame as the seed for the new continuation — a stable, clearly composed final frame in the source clip produces a smoother extension than one mid-motion.
  • Reframe and Autocrop work on a specific segment, not necessarily the whole clip — Autocrop explicitly takes a start_time/end_time range plus a target aspect_ratio, using AI subject tracking to keep the subject in frame.
  • AI Clipping returns highlight segments, not a single output — request a specific num_highlights, or set return_coordinates_only to get timestamps/crop coordinates back instead of rendered clips, useful for a custom editing pipeline.

How to Call a Video Editing Model

  1. Host the source video. Upload via POST /api/v1/upload_file, or use any publicly reachable URL.
  2. Submit the request. POST /api/v1/{model-slug} with video_url and the fields that model supports (prompt, aspect_ratio, language, etc.).
  3. Poll for completion. Check 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())

Frequently Asked Questions

What's the difference between an instruction edit and video extension?

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.

Can I change a video's aspect ratio without cropping content out?

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.

Does Muapi have face swap or background removal for video?

Yes, but they have their own dedicated pages — see Face Swap API and Background Remover API — rather than being duplicated on this page.

Can I get short clips or highlights from a long video automatically?

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.

Can I dub a video into another language?

Yes — HeyGen Video Translate converts a video into 175+ languages with synchronized voice translation, AI voice cloning, and lip sync in one call.

Can I remove a watermark or logo from a video?

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.

Can I get Video Editing API access right now?

Yes. Sign up at muapi.ai, create an API key from your dashboard, and start calling any video-editing model immediately — no waitlist required.