remotion▌
davila7/claude-code-templates · updated Apr 8, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Programmatic video creation using React components with frame-based animations, media handling, and data visualization.
- ›Frame-driven animations using useCurrentFrame() hook, interpolation curves, and easing functions for smooth motion control
- ›Comprehensive asset support including images, videos, audio, GIFs, fonts, and Lottie animations with media processing capabilities
- ›Built-in features for captions (SRT import, transcription, word highlighting), charts, 3D content via Three.js, an
Remotion - Video Creation in React
Comprehensive skill set for creating programmatic videos using Remotion, a framework for creating videos programmatically using React.
When to use
Use this skill whenever you are dealing with Remotion code to obtain domain-specific knowledge about:
- Creating video compositions with React components
- Animating elements using frame-based animations
- Working with audio, video, and image assets
- Building charts and data visualizations
- Implementing text animations and captions
- Using 3D content with Three.js
- Applying transitions and sequencing
- Integrating Tailwind CSS and Lottie animations
Core Concepts
Remotion allows you to create videos using:
- React Components: Build video content with familiar React syntax
- Frame-based Animations: All animations driven by
useCurrentFrame()hook - Compositions: Define video compositions with duration, dimensions, and props
- Assets: Import and manipulate images, videos, audio, and fonts
- Rendering: Export videos programmatically with customizable settings
Key Features
- Frame-by-frame control over animations
- Dynamic metadata calculation
- Media processing (trimming, volume, speed, pitch)
- Caption generation and display
- Data visualization with charts
- 3D content integration
- Professional text animations
- Scene transitions and sequencing
How to use
Read individual rule files for detailed explanations and code examples:
Core Animation & Timing
- references/animations.md - Fundamental animation techniques for Remotion
- references/timing.md - Interpolation curves: linear, easing, spring animations
- references/sequencing.md - Delay, trim, and limit duration of items
- references/trimming.md - Cut the beginning or end of animations
Compositions & Metadata
- references/compositions.md - Defining compositions, stills, folders, default props
- references/calculate-metadata.md - Dynamically set composition duration, dimensions, and props
Assets & Media
- references/assets.md - Importing images, videos, audio, and fonts
- references/images.md - Embedding images using the Img component
- references/videos.md - Embedding videos with trimming, volume, speed, looping, pitch
- references/audio.md - Using audio and sound with trimming, volume, speed, pitch
- references/gifs.md - Displaying GIFs synchronized with timeline
Text & Typography
- references/text-animations.md - Typography and text animation patterns
- references/measuring-text.md - Measuring text dimensions, fitting text, checking overflow
- references/fonts.md - Loading Google Fonts and local fonts
Captions & Transcription
- references/display-captions.md - Displaying captions with TikTok-style pages and word highlighting
- references/import-srt-captions.md - Importing .srt subtitle files using @remotion/captions
- references/transcribe-captions.md - Transcribing audio to generate captions
Data Visualization
- references/charts.md - Chart and data visualization patterns
Advanced Features
- references/3d.md - 3D content using Three.js and React Three Fiber
- references/lottie.md - Embedding Lottie animations
- references/transitions.md - Scene transition patterns
Styling & Layout
- references/tailwind.md - Using TailwindCSS in Remotion
- references/measuring-dom-nodes.md - Measuring DOM element dimensions
Media Processing (Mediabunny)
- references/can-decode.md - Check if a video can be decoded by the browser
- references/extract-frames.md - Extract frames from videos at specific timestamps
- references/get-audio-duration.md - Getting the duration of an audio file
- references/get-video-dimensions.md - Getting the width and height of a video file
- references/get-video-duration.md - Getting the duration of a video file
Quick Start Example
import { useCurrentFrame, useVideoConfig, interpolate } from "remotion";
export const MyComposition = () => {
const frame = useCurrentFrame();
const { fps } = useVideoConfig();
const opacity = interpolate(frame, [0, 2 * fps], [0, 1], {
extrapolateRight: 'clamp',
});
return (
<div style={{ opacity }}>
<h1>Hello Remotion!</h1>
</div>
);
};
Best Practices
- Always use
useCurrentFrame()- Drive all animations from the current frame - Avoid CSS animations - They won't render correctly in videos
- Think in seconds - Multiply time in seconds by
fpsfor frame calculations - Use interpolate for smooth animations - Built-in interpolation with easing functions
- Clamp extrapolation - Prevent values from exceeding intended ranges
- Test frequently - Preview in Remotion Studio before rendering
Resources
- Documentation: https://www.remotion.dev/docs
- Repository: https://github.com/remotion-dev/remotion
- Skills Repository: https://github.com/remotion-dev/skills
- Community: Discord and GitHub Discussions
- License: MIT
How to use remotion on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add remotion
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches remotion from GitHub repository davila7/claude-code-templates and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate remotion. Access the skill through slash commands (e.g., /remotion) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.6★★★★★59 reviews- ★★★★★Pratham Ware· Dec 24, 2024
remotion has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Liam Desai· Dec 20, 2024
Registry listing for remotion matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Arjun Dixit· Dec 12, 2024
Keeps context tight: remotion is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Kwame Choi· Dec 8, 2024
Keeps context tight: remotion is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Dev Harris· Dec 8, 2024
remotion fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Kwame Abbas· Nov 27, 2024
remotion is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Yusuf Dixit· Nov 27, 2024
Registry listing for remotion matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Kabir Rao· Nov 19, 2024
I recommend remotion for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Sakshi Patil· Nov 15, 2024
Solid pick for teams standardizing on skills: remotion is focused, and the summary matches what you get after install.
- ★★★★★Liam Shah· Nov 15, 2024
remotion reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 59