codex-video-short-maker-skill
v0.1.0
Published
A Codex skill for turning local videos into short clips with optional local captions.
Maintainers
Readme
Codex Video Short Maker Skill
A Codex skill for turning local videos into short clips with optional local captions.
Give Codex a local video and it can remove dead air, cut pauses, export a vertical short, generate local Whisper subtitles, and burn captions into the final MP4.
What It Does
- Turns local videos into 30-60s shorts
- Removes dead air and boring pauses
- Supports
light,normal, andaggressivecut styles - Exports vertical 9:16 MP4 for Shorts/Reels/TikTok
- Exports high quality H.264 MP4
- Optionally generates local captions with
whisper.cpp - No OpenAI API key required
Installation
Base install:
npx --yes codex-video-short-maker-skill@latestFull install with local captions:
npx --yes codex-video-short-maker-skill@latest --with-captionsThis installs the skill into:
~/.codex/skills/video-short-makerThen restart Codex so it can discover the skill.
Captions Setup
Captions are optional. If you install with:
npx --yes codex-video-short-maker-skill@latest --with-captionsthe installer will:
- copy the skill into Codex
- install
whisper.cppwith Homebrew if missing - install Pillow if missing
- download the default local Whisper model
tiny.en
For multilingual captions, install a multilingual model:
npx --yes codex-video-short-maker-skill@latest --with-captions --caption-model baseUsage
After installation, restart Codex and run:
Use $video-short-maker to create a 30s vertical high quality short with English captions from /Users/me/Desktop/demo.mp4 using aggressive cut style.Without captions:
Use $video-short-maker to create a 45s vertical short from /Users/me/Desktop/demo.mp4.Italian captions:
Use $video-short-maker to create a 30s vertical high quality short with Italian captions from /Users/me/Desktop/demo.mp4.Output
The skill creates files next to the input video:
demo.vertical.short.mp4
demo.vertical.short.srt
demo.vertical.short.captioned.mp4
demo.vertical.short.report.jsonCut Styles
light: softer cuts, preserves more pausesnormal: balanced defaultaggressive: removes more pauses and dead air
Manual Installation
Clone the repository:
git clone https://github.com/Kappaemme-git/codex-video-short-maker-skill.gitCopy the skill into your Codex skills directory:
mkdir -p ~/.codex/skills
cp -R codex-video-short-maker-skill/video-short-maker ~/.codex/skills/video-short-makerRestart Codex.
Requirements
ffmpegandffprobe- macOS + Homebrew for automatic local captions setup
whisper.cppfor captions- Pillow for burned-in captions
Base video cutting only requires ffmpeg.
License
MIT
