/find-footage
Search and download stock footage from Pexels for your Remotion project. Provide a description of what you need and this will find, preview, and download matching clips.
$ npx -y skills add DojoCodingLabs/remotion-superpowers --agent claude-codeShips with remotion-superpowers. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/find-footage
Context preview
What this command does when you run it.
Search and download stock footage from Pexels for your Remotion project. Provide a description of what you need and this will find, preview, and download matching clips.
Command definition
find-footage.mdname: find-footage
description: Search and download stock footage from Pexels for your Remotion project. Provide a description of what you need and this will find, preview, and download matching clips.
Find Footage — Stock Video & Photo Search
You are helping the user find stock footage for their Remotion project using the Pexels MCP.
**Load the `remotion-production` skill** for the `stock-footage-workflow` rule.
Workflow
1. Understand the Need
Ask the user what they're looking for if not already clear. Get:
- **Subject** — What should be in the footage? (people, nature, tech, food, etc.)
- **Style** — Cinematic, aerial/drone, close-up, time-lapse, slow motion?
- **Orientation** — Landscape (16:9), portrait (9:16), or square (1:1)?
- **Mood** — Bright, dark, warm, cool, energetic, calm?
2. Search Pexels
Craft a descriptive search query and run:
Use Pexels searchVideos:
- query: [descriptive keywords — be specific]
- orientation: [landscape/portrait/square]
- size: large
- per_page: 5
For photos:
Use Pexels searchPhotos:
- query: [descriptive keywords]
- orientation: [landscape/portrait/square]
- size: large
- per_page: 5
3. Present Results
Show the user the results with:
- Thumbnail/preview URL
- Duration (for videos)
- Resolution
- Photographer credit
Ask which ones they want to download.
4. Download Selected Assets
mkdir -p public/footage # or public/images for photos
# Download each selected clip
curl -L -o public/footage/[descriptive-name].mp4 "[video_url]"
5. Show Usage
After downloading, show how to use the clip in Remotion:
import { OffthreadVideo, staticFile } from "remotion";
<OffthreadVideo
src={staticFile("footage/[descriptive-name].mp4")}
style={{ width: "100%", height: "100%", objectFit: "cover" }}
/>6. Attribution Reminder
Remind the user: > Pexels content is free to use. Attribution is appreciated but not required. > Consider adding "Videos provided by Pexels" in your video credits.
Read more
name: find-footage description: Search and download stock footage from Pexels for your Remotion project. Provide a description of what you need and this will find, preview, and download matching clips.
Find Footage — Stock Video & Photo Search
You are helping the user find stock footage for their Remotion project using the Pexels MCP.
**Load the `remotion-production` skill** for the `stock-footage-workflow` rule.
Workflow
1. Understand the Need
Ask the user what they're looking for if not already clear. Get:
- **Subject** — What should be in the footage? (people, nature, tech, food, etc.)
- **Style** — Cinematic, aerial/drone, close-up, time-lapse, slow motion?
- **Orientation** — Landscape (16:9), portrait (9:16), or square (1:1)?
- **Mood** — Bright, dark, warm, cool, energetic, calm?
2. Search Pexels
Craft a descriptive search query and run:
Use Pexels searchVideos: - query: [descriptive keywords — be specific] - orientation: [landscape/portrait/square] - size: large - per_page: 5
For photos:
Use Pexels searchPhotos: - query: [descriptive keywords] - orientation: [landscape/portrait/square] - size: large - per_page: 5
3. Present Results
Show the user the results with:
- Thumbnail/preview URL
- Duration (for videos)
- Resolution
- Photographer credit
Ask which ones they want to download.
4. Download Selected Assets
mkdir -p public/footage # or public/images for photos # Download each selected clip curl -L -o public/footage/[descriptive-name].mp4 "[video_url]"
5. Show Usage
After downloading, show how to use the clip in Remotion:
import { OffthreadVideo, staticFile } from "remotion";
<OffthreadVideo
src={staticFile("footage/[descriptive-name].mp4")}
style={{ width: "100%", height: "100%", objectFit: "cover" }}
/>6. Attribution Reminder
Remind the user: > Pexels content is free to use. Attribution is appreciated but not required. > Consider adding "Videos provided by Pexels" in your video credits.
🎬 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
Other commands on remotion-superpowers.
- /add-captions
Generate TikTok-style animated captions for your Remotion video. Transcribes audio with Whisper, then creates word-by-word animated subtitles with customizable position, colors, and style.
Open command - /add-music
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 composition with proper fade in/out.
Open command - /add-transitions
Add professional scene transitions to your Remotion video. Choose from fade, slide, wipe, flip, clock-wipe and more — with spring physics or linear timing.
Open command - /add-voiceover
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 audio and wire it into your composition.
Open command - /analyze-footage
Analyze existing video files using TwelveLabs AI. Understand what's in your footage — find specific scenes, detect objects and speakers, get timestamps for the best clips.
Open command - /create-short
Create a short-form vertical video (TikTok, Instagram Reels, YouTube Shorts). Optimized 9:16 pipeline with auto-captions, hook-first structure, and background music mood selection.
Open command

