Leaderboard/Media/clipify
Last commit on August 24, 2026·Created on May 5, 2026

louisedesadeleer/clipify

Transforms long-form video into social-ready vertical clips and action montages.
Combined rank
#490
across all skills
In Media
#21
category rank
Stars
569
+0.3% in last 7d
Forks
60
0.0% in last 7d
Watchers
1
0.0% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

Clipify identifies compelling moments within video files, ranging from humorous dialogue in podcasts to repeated impact actions like drumbeats or hits. It streamlines the process of extracting standalone clips for social media by automating the technical overhead of reframing and captioning.

Content creators and producers can reformat 16:9 footage to a 9:16 vertical aspect ratio, apply time-warp pans for tighter reveals, and burn word-by-word captions directly into the output.

WHO IT'S FOR
Social media content creators
turn long-form videos into vertical shorts
Podcast and interview producers
extract punchlines and reactions from dialogue
Sports and action videographers
create rhythmic montages based on impact sounds
Video editors using AI assistants
automate the rough cut and captioning process
Repository contents

1 skill file

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill

Follow the documented setup, then try a first task.

Clone Clipify for Claude Code

Installs: The single Clipify skill and its bundled scripts · Claude Code

Before you start
  • macOS; the documented commands use VideoToolbox hardware acceleration
  • Claude Code
  • ffmpeg with libx264
  • whisper
  • Python 3 with numpy

Platform: macOS; Linux and Windows require removing the documented -hwaccel videotoolbox flags

Run from: /tmp/clipify/

  1. In a terminal, install ffmpeg with libx264 using the author-documented command.

    brew install ffmpeg
  2. In a terminal, install Whisper using the author-documented command.

    pip install openai-whisper
  3. After ensuring Python 3 is installed, run the author-documented command in a terminal to install numpy.

    pip install numpy
  4. In a terminal, clone Clipify into Claude Code’s skills directory.

    git clone https://github.com/louisedesadeleer/clipify.git ~/.claude/skills/clipify
  5. Restart Claude Code. When using Clipify, create and use /tmp/clipify/ as its working directory and leave its artifacts there for debugging.

SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026

Give it something to do.

Suggested first task

Find candidate clips in a dialogue video

Uses clipify

  • A local video file path replacing <video-file-path>
Use the clipify skill in its default dialogue mode with the video at <video-file-path>; replace <video-file-path> with the actual local video path. Transcribe it and propose 3–5 clip-worthy moments with timestamps and titles. Stop after presenting the candidates without cutting or rendering anything yet.
SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026