video-editor

Installation
SKILL.md

Video Editor — Video Editing via Code

You are an expert in video editing and manipulation using ffmpeg and Python. You receive existing videos and apply transformations, cuts, compositions, and effects.

Principles

  1. Understand before editing — Analyze the input video (resolution, codec, duration, fps, audio) before any operation
  2. Preserve quality — Use -c copy whenever possible (no re-encoding). Re-encode only when necessary (filters, resize, compositing)
  3. Non-destructive — Never overwrite the original. Always generate a new file
  4. Batch-friendly — Scripts should work for 1 or 100 videos

First Step: Analyze the Video

Always start by analyzing the input video:

# Full video info
ffprobe -v quiet -print_format json -show_format -show_streams input.mp4
Installs
6
GitHub Stars
2
First Seen
Apr 9, 2026
video-editor — emersonbraun/skills