Agent skill · Media & Video

video-clipper

Repurposes long-form video (podcasts, interviews, talks) into short-form vertical clips for Instagram Reels, TikTok, and YouTube Shorts. Handles transcription, moment selection, clip extraction, speaker-tracked reframing (16:9 to 9:16), and animated captions.

gooseworks-aigithub.com/gooseworks-aiGitHub ↗
claude-codecodexcursorcan modify filesMIT
Install
npx skills add gooseworks-ai/goose-skills --skill video-clipper --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 12 KB
Bundled scripts: none
Allowed tools: BashReadWriteEditGrepGlobWebSearchWebFetch
Path: skills/design/packs/video-production/video-clipper/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,091
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Video Clipper Takes a long-form video and produces ready-to-post short-form vertical clips with speaker-tracked framing and professional animated captions. Works with podcasts, interviews, talks, and any talking-head content. --- ## Requirements - **FFmpeg** installed and available in PATH (`brew install ffmpeg` on macOS, `apt install ffmpeg` on Linux) - **Python 3** with `openai-whisper` and `requests` packages (`pip install openai-whisper requests`). **Note:** `openai-whisper` installs PyTorch (~2GB download). This skill uses `openai-whisper` instead of the lighter `whisper-cpp` because it provides word-level timestamps needed for accurate viral moment scoring. - **yt-dlp** installed (for YouTube/URL downloads) — `brew install yt-dlp` on macOS, `pip install yt-dlp` on Linux - **API Keys** in `.env` file (project root or any parent directory): - `KLAP_API_KEY` — from [klap.app](https://klap.app) (reframing with speaker tracking) - `CAPTIONS_AI_API_KEY` — from [captions.ai](https://captions.ai) / [platform.mirage.app](https://platform.mirage.app) (animated captions) **Before starting:** Verify that FFmpeg, yt-dlp, and the Python packages are installed. If any are missing, instruc

What's inside
Steps it walks through
  1. Requirements
  2. Cost Per Clip
  3. Input
  4. Pipeline
  5. Step 1: Get the Video
  6. Step 2: Transcribe with Whisper
  7. Step 3: Identify Best Moments (Viral Scoring)
  8. Step 4: Extract Raw Clips
  9. Step 5: Reframe with Klap
  10. Step 6: Add Animated Captions with Captions.ai
  11. Step 7: Generate Platform Captions
  12. Step 8: Output
  13. Workflow Summary
  14. Known Limitations
Ships with 1 file
  • skill.meta.json
Commands it runs
Verify it exists and get duration
ffprobe -v quiet -print_format json -show_format "video.mp4"
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" --merge-output-format mp4 -o "<workdir>/source.mp4" "<URL>"
curl -L -o "<workdir>/source.mp4" "<URL>"
ffmpeg -y -ss <start> -to <end> -i source.mp4 -c copy clip<N>-raw.mp4
More from goose-skills
All skills →
About this skill
What does the video-clipper skill do?

Repurposes long-form video (podcasts, interviews, talks) into short-form vertical clips for Instagram Reels, TikTok, and YouTube Shorts. Handles transcription, moment selection, clip extraction, speaker-tracked reframing (16:9 to 9:16), and animated captions.

How do I install it?

Run `npx skills add gooseworks-ai/goose-skills --skill video-clipper --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From gooseworks-ai/goose-skills, a repository with 1,091 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going