add-captions
Generate TikTok-style animated captions for your Remotion video. Transcribes audio with Whisper, then creates word-by-word animated subtitles with customizable…
Full video production pipeline — from a text prompt to a rendered MP4 with voiceover, music, sound effects, stock footage, and motion graphics. The flagship command of Remotion Superpowers.
> /plugin marketplace add DojoCodingLabs/remotion-superpowers > /plugin install remotion-superpowers@remotion-superpowers
How it fires
How this command gets triggered: by you, by Claude, or both.
/create-videoContext preview
What this command does when you run it.
Full video production pipeline — from a text prompt to a rendered MP4 with voiceover, music, sound effects, stock footage, and motion graphics. The flagship command of Remotion Superpowers.
name: create-video description: Full video production pipeline — from a text prompt to a rendered MP4 with voiceover, music, sound effects, stock footage, and motion graphics. The flagship command of Remotion Superpowers.
You are the Video Director. The user wants to create a complete video. Follow this pipeline step by step.
**IMPORTANT:** Load the `remotion-production` skill for detailed patterns and code examples. Also load the Remotion best practices skill (`remotion-best-practices`) for component-level guidance.
Before starting, verify: 1. You're in a Remotion project (has `remotion.config.ts`) 2. MCP servers are available — check with `/mcp` if unsure 3. If anything is missing, suggest running `/setup`
Ask the user to describe their video (or use their existing description). Then break it down:
📋 Video Production Plan Duration: [X seconds] Aspect Ratio: [16:9 / 9:16 / 1:1] Style: [describe visual style] Scenes: 1. [0:00-0:05] Intro — [description] 2. [0:05-0:15] Main content — [description] 3. [0:15-0:25] Supporting content — [description] 4. [0:25-0:30] Outro/CTA — [description] Audio Plan: - Voiceover: [yes/no] — [voice style] - Music: [genre/mood description] - Sound Effects: [list any needed SFX] Visual Assets Needed: - Stock footage: [list queries] - Generated images: [list descriptions] - Existing footage: [list files to analyze]
**Present this plan to the user and get approval before proceeding.**
Do this FIRST — audio determines timing.
Write the narration script, then generate:
Use remotion-media generate_tts: - text: [full narration script] - voice: [chosen voice name] - project_path: [project root path]
**Record the returned duration — this sets the video length.**
Use remotion-media generate_music: - prompt: [music description, always include "no vocals"] - project_path: [project root path]
For each SFX:
Use remotion-media generate_sfx: - text: [sound description] - duration_seconds: [length] - project_path: [project root path]
For each scene needing stock footage:
Use Pexels searchVideos: - query: [descriptive keywords] - orientation: landscape - size: large
Download best matches to `public/footage/`.
If user has footage files:
Use TwelveLabs to: - Index the video(s) - Search for relevant scenes - Get timestamps for best clips
Use remotion-media generate_image: - prompt: [image description] - project_path: [project root path]
Now write the React/TypeScript code:
1. **Create scene components** in `src/scenes/` — one per scene 2. **Create the main composition** that sequences all scenes 3. **Add audio layers** — voiceover, music (with fade in/out + ducking), SFX at correct frames 4. **Register the composition** in `src/Root.tsx` with correct duration
Follow Remotion best practices:
Start the dev server:
npm run dev
Tell the user to open http://localhost:3000 to preview.
Ask for feedback and make adjustments:
When the user is satisfied:
npx remotion render [CompositionId] out/video.mp4
Or with quality settings:
npx remotion render [CompositionId] out/video.mp4 --codec h264 --crf 18
🎬 Claude Code plugin — full video production studio for Remotion. AI voiceovers, music, stock footage, image/video generation, TikTok captions, 3D, transitions & AI review loop. 5 MCP servers, 13 commands. Free & open source by Dojo Coding.
Repo: DojoCodingLabs/remotion-superpowers
Generate TikTok-style animated captions for your Remotion video. Transcribes audio with Whisper, then creates word-by-word animated subtitles with customizable…
Generate background music and add it to your Remotion project. Describe the mood/genre you want, and this will generate a track via Suno and wire it into your…
Add professional scene transitions to your Remotion video. Choose from fade, slide, wipe, flip, clock-wipe and more — with spring physics or linear timing.
Generate a voiceover narration and add it to your Remotion project. Provide a script or describe what the narration should say, and this will generate TTS…
Analyze existing video files using TwelveLabs AI. Understand what's in your footage — find specific scenes, detect objects and speakers, get timestamps for the…
Create a short-form vertical video (TikTok, Instagram Reels, YouTube Shorts). Optimized 9:16 pipeline with auto-captions, hook-first structure, and background…