video-editing

Edits real video footage through a pipeline of FFmpeg cuts, Remotion compositions, and generated audio assets.

Updated Mar 22, 2026
One-click install
npx skills add https://github.com/diazMelgarejo/orama-system --skill video-editing-diazmelgarejo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: video-editing
Source: https://github.com/diazMelgarejo/orama-system/tree/main/.cursor/.agents/skills/video-editing
Command: npx skills add https://github.com/diazMelgarejo/orama-system --skill video-editing-diazmelgarejo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Turning hours of raw footage into polished short-form videos requires tedious manual cutting, structuring, and asset creation across many disconnected tools. ## Core Features & Use Cases - Structured Editing Pipeline: Organizes footage with Claude/Codex, cuts deterministically with FFmpeg, composes overlays with Remotion, and generates voiceover or music with ElevenLabs and fal.ai. - Platform Reframing: Converts videos between 16:9, 9:16, and 1:1 aspect ratios for YouTube, TikTok, and Instagram using FFmpeg crop filters or VideoDB smart reframe. - Use Case: Take a 4-hour screen recording, have Claude identify the 8 strongest segments, batch-cut them with FFmpeg, add title overlays in Remotion, generate narration with ElevenLabs, and finish pacing and captions in Descript. ## Quick Start Use the video-editing skill to plan an edit that cuts my raw footage into a short vlog with FFmpeg commands and Remotion overlays.

Frequently Asked Questions about video-editing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I cut video segments by timestamp with FFmpeg?

Use ffmpeg -i raw.mp4 -ss 00:12:30 -to 00:15:45 -c copy segment.mp4 to extract a segment without re-encoding. For batch cuts, loop over a cuts file containing start, end, and label values and run the same command per line.

How do I convert 16:9 video to vertical 9:16 for TikTok?

Use the FFmpeg crop filter: ffmpeg -i input.mp4 -vf "crop=ih*9/16:ih,scale=1080:1920" vertical.mp4 for a center crop. For subject-aware reframing, VideoDB offers a smart reframe mode that tracks the subject automatically.

When should I use Remotion instead of a traditional video editor?

Use Remotion for programmable, repeatable elements like text overlays, lower thirds, data visualizations, and reusable scene templates. Traditional editors like Descript or CapCut remain better for final pacing, captions, and color grading.

Can this workflow generate a full video from a text prompt?

No, this workflow is designed for editing real captured footage, not prompt-based generation. AI generation with ElevenLabs or fal.ai is used selectively only for missing assets like voiceover, music, or insert shots.

How do I detect silent sections to auto-cut dead air?

Run ffmpeg with the silencedetect filter: ffmpeg -i input.mp4 -af silencedetect=noise=-30dB:d=2 -f null - and parse the logged silence timestamps. Combine these with transcript analysis to decide which segments to remove.