Help us improve
Share bugs, ideas, or general feedback.
From creative
Edits, processes, and renders videos using FFmpeg and Remotion. Handles stitching clips, transitions, captions, teasers, transcription via Whisper, and analysis with ffprobe.
npx claudepluginhub naveedharri/benai-skills --plugin creativeHow this skill is triggered — by the user, by Claude, or both
Slash command
/creative:videoThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Edits, processes, and renders videos using FFmpeg and Remotion.
references/captions.mdreferences/ffmpeg-basics.mdreferences/graphics-generation.mdreferences/intelligent-editing.mdreferences/qa-testing.mdreferences/reference-implementation.mdreferences/remotion-setup.mdreferences/remotion-tips.mdreferences/stitching.mdreferences/teasers.mdreferences/title-cards.mdreferences/transcription.mdreferences/transitions.mdreferences/video-analysis.mdAI-assisted video editing workflow for cutting, structuring, and enhancing real footage using FFmpeg, Remotion, ElevenLabs, and fal.ai. Activates when users want to edit video, trim clips, make vlogs, or build video content.
AI-assisted video editing workflows that cut, structure, and augment real footage. Covers the full pipeline from raw capture through FFmpeg, Remotion, ElevenLabs, fal.ai, and final polish in Descript or CapCut.
Provides best practices for building videos with Remotion in React. Covers captions, FFmpeg integration, audio visualization, 3D, animations, assets, charts, and more.
Share bugs, ideas, or general feedback.
Edits, processes, and renders videos using FFmpeg and Remotion.
This skill enables Claude to act as a smart video editor. Before executing commands:
See references/intelligent-editing.md for detailed workflow, questions to ask, and quality checks.
| Task | FFmpeg | Remotion |
|---|---|---|
| Stitching | Same codec, no effects | Transitions, overlays, programmatic |
| Transitions | Simple crossfades | Multiple types, custom timing |
| Captions | SRT burn-in | TikTok-style word highlighting |
| Teasers | Quick clips | Text overlays, branded elements |
General guidance:
Read these files as needed using the Read tool:
| File | Contents |
|---|---|
| references/intelligent-editing.md | Smart editing workflow, questions, quality checks |
| references/video-analysis.md | Analyze videos with ffprobe |
| references/transcription.md | Whisper transcription for speech analysis |
| references/qa-testing.md | QA tests before user preview |
| File | Contents |
|---|---|
| references/stitching.md | Combine multiple clips into one video |
| references/transitions.md | Add fade, slide, wipe between clips |
| references/captions.md | Add subtitles and TikTok-style captions |
| references/teasers.md | Create 30-second teasers/trailers |
| references/title-cards.md | Add chapter headers, bumpers, section titles |
| references/graphics-generation.md | Generate thumbnails, overlays, social graphics |
| File | Contents |
|---|---|
| references/ffmpeg-basics.md | Common FFmpeg patterns and troubleshooting |
| references/remotion-setup.md | Remotion project setup and workflow |
| references/remotion-tips.md | Animations, timing, springs, sequences, and captions |
| references/reference-implementation.md | Complete working code to recreate the project |
# 1. Setup whisper.cpp (one-time)
npx ts-node scripts/setup-whisper.ts
# 2. Transcribe all videos (GPU accelerated)
npx ts-node scripts/transcribe-fast.ts
# Check installation
which ffmpeg || brew install ffmpeg
# Basic concat (same codec)
ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4
# Burn in subtitles
ffmpeg -i video.mp4 -vf "subtitles=captions.srt" output.mp4
# Start preview (always do this first)
npm run dev
# Render (only when user requests)
npx remotion render CompositionName out/video.mp4
@remotion/install-whisper-cpp - NOT Python whisper (10x faster with GPU)base.en model for speed, medium.en for final qualitywhisperCppVersion: '1.5.5' in transcribe() calltokenLevelTimestamps: true for word-level captions#FFD700#FFFFFF#E0E0E0WebkitTextStroke: '3px black',
paintOrder: 'stroke fill',
textShadow: '0px 0px 4px rgba(0,0,0,1), 0px 0px 8px rgba(0,0,0,0.8)'
OffthreadVideo componentstartFrom AND endAt propsMath.round((ms / 1000) * fps)intro.mp4 not Intro Video.mp4-c copy) fails silently with mismatched codecsffprobe to check codecs before concatenatingpublic/ folder for Remotion projects