Platform Conversion — One Video to Every Format (any length) — A creator has one 16:9 landscape video that needs to go on YouTube (16:9), TikTok (9:16), Instagram Feed (1:1), Instagram Reels (9:16 with captions), LinkedIn (16:9 with captions), and Facebook (4:5). NemoVideo: creates all 6 versions with intelligent reframing per platform (AI subject tracking keeps the speaker centered in vertical crops), adds animated captions to the versions that need them (Reels, LinkedIn), adjusts pacing for short-form versions (tightening for TikTok), and exports platform-native files. One recording, six platforms, each version optimized.
Any video file from any device. Phone recordings, screen captures, webcam footage, drone clips, or existing edited content. Upload one or multiple files.
curl -X POST https://mega-api-prod.nemovideo.ai/api/v1/generate \
-H "Authorization: Bearer $NEMO_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"skill": "free-video-editor",
"prompt": "Edit a 7-minute product review video. Trim: cut first 12 seconds (bad start) and last 5 seconds (reaching for camera). Tighten: remove all pauses over 2 seconds. Text: add title Product Review — Sony WH-1000XM6 at 0:00 for 4 seconds, add Verdict: 9/10 at 5:30 for 6 seconds. Music: lo-fi hip hop, low volume under speech. Color: slightly warm, boost contrast for product close-ups. Speed: slow motion at 3:15-3:20 (unboxing reveal) at 0.3x. Export: 16:9 for YouTube at 1080p + 60-second highlight at 9:16 for TikTok with animated captions.",
"edits": [
{"type": "trim", "cut_start": "0:00-0:12", "cut_end": "last-5s"},
{"type": "remove-pauses", "threshold": 2.0},
{"type": "text", "text": "Product Review — Sony WH-1000XM6", "at": "0:00", "duration": 4},
{"type": "text", "text": "Verdict: 9/10", "at": "5:30", "duration": 6},
{"type": "music", "style": "lofi-hiphop", "volume": "under-speech"},
{"type": "color", "style": "warm-contrast-boost"},
{"type": "speed", "segment": "3:15-3:20", "speed": 0.3}
],
"outputs": [
{"format": "16:9", "resolution": "1080p", "platform": "youtube"},
{"format": "9:16", "duration": 60, "captions": "animated", "platform": "tiktok"}
]
}'
Watch the edited video. Want changes? Just describe them: "Make the title bigger," "Remove the slow-motion," "Change the music to something more upbeat." Each instruction refines the edit. No timelines, no panels, no learning curve.
{
"job_id": "fved-20260329-001",
"status": "completed",
"source_duration": "7:12",
"output_duration": "5:48",
"edits_applied": {
"trimmed": "17s",
"pauses_removed": "1:07",
"text_overlays": 2,
"music_added": true,
"color_grade": "warm-contrast",
"slow_motion": "3:15-3:20 at 0.3x"
},
"outputs": {
"youtube": {"file": "review-edited-16x9.mp4", "resolution": "1920x1080"},
"tiktok": {"file": "review-highlight-9x16.mp4", "duration": "0:58", "captions": true}
}
}