You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
remotion-ai is a CLI that turns natural language into video. No timeline editing. No keyframes. Just tell it what you want.
# Install
npm install -g remotion-ai-cli
# Create a video from natural language
remotion-ai vibe "Make a 30s tech explainer about AI agents" --render
# One-shot: scrape a URL and generate a video
remotion-ai auto https://en.wikipedia.org/wiki/Artificial_intelligence --render
# Get trending video ideas
remotion-ai suggest --category tech
remotion-ai is built on Remotion and uses your GPU (AMD/NVIDIA/Intel) for fast hardware-accelerated rendering.
Pre-built video structures (explainer, listicle, news, tutorial, promo)
GPU Acceleration
AMD AMF, NVIDIA NVENC, Intel QSV auto-detection
MCP Server
AI agent integration via Model Context Protocol
Remix
Analyze existing video and suggest improvements
Commands
Core
Command
Description
init
Initialize a new video project
render [--gpu]
Render video to ~/Downloads/remotion-ai-renders/
preview
Start Remotion Studio for live preview
status
Show project summary (timeline, assets, settings)
info
Show tool version, Node, FFmpeg, GPU info
Vibe Coding
Command
Description
vibe <prompt>
Natural language → video (with --render for auto-render)
auto <url>
One-shot pipeline: scrape → script → render
remix
Analyze current video and suggest improvements
suggest
Get trending video topic suggestions
Content
Command
Description
text add <content>
Add text overlay with effects
text style <id>
Style text (color, size)
clip add <file>
Add video/image clip
audio add <file>
Add background music
duration <frames>
Set project duration
Data Infographics
Command
Description
data import <file>
Import JSON/CSV data
data chart <type>
Generate chart: counter, bar, comparison, ranking
data list
Show imported data points
Web Scraping
Command
Description
scrape url <url>
Extract headlines, stats, text from webpage
scrape trend <topic>
Search trending topics
scrape to-video <url>
Auto-generate video from scraped content
Templates & Ideas
Command
Description
template list
List available templates
template preview <name>
Preview template structure
idea <topic>
Get video structure suggestions for a topic
GPU
Command
Description
gpu detect
Detect GPU and show encoder info
gpu test
Test GPU encoding with short render
MCP Server
Command
Description
mcp
Start MCP server for AI agent integration
Examples
Vibe Coding — Describe your video
# Tech explainer
remotion-ai vibe "Make a 30s tech explainer about quantum computing"# Listicle
remotion-ai vibe "Top 5 productivity tips for developers" --render
# Comparison
remotion-ai vibe "React vs Vue vs Svelte comparison" --dry-run
# Tutorial
remotion-ai vibe "How to set up a Next.js project in 2 minutes"
Auto Pipeline — One-shot from URL
# Scrape Wikipedia and generate video
remotion-ai auto https://en.wikipedia.org/wiki/Artificial_intelligence --render
# Scrape a blog post
remotion-ai auto https://blog.example.com/ai-trends --duration 600
Data Infographics — Animated charts
# Import data
remotion-ai data import market-share.json
# Generate ranking chart
remotion-ai data chart ranking --title "Market Share 2024"# Generate comparison
remotion-ai data chart comparison --title "GPT vs Claude"# Generate counter
remotion-ai data chart counter --title "Total Users"
Web Scraping — Extract and visualize
# Extract content from any webpage
remotion-ai scrape url https://news.ycombinator.com
# Generate video from scraped content
remotion-ai scrape to-video https://example.com/article --render
# Search trending topics
remotion-ai scrape trend "AI agents" --json
Templates — Pre-built structures
# List all templates
remotion-ai template list
# Preview a template
remotion-ai template preview explainer
# Get video ideas for a topic
remotion-ai idea "Machine Learning"
Remix — Improve existing video
# Analyze and get suggestions
remotion-ai remix
# Auto-apply fixes
remotion-ai remix --apply
AI Agent Integration
remotion-ai includes an MCP server for integration with AI coding agents (Claude, GPT, etc.):
# Start MCP server
remotion-ai mcp
Available MCP Tools
Tool
Description
remotion_init
Initialize a new project
remotion_render
Render video with GPU acceleration
remotion_preview
Start Remotion Studio
remotion_add_text
Add text overlay with effects
remotion_add_clip
Add video/image clip
remotion_add_audio
Add background music
remotion_status
Get project status
Example: AI Agent Workflow
User: "Make a 30s video about AI trends for TikTok"
Agent:
1. remotion_init
2. remotion_add_text "AI Trends 2024" --effect scale
3. remotion_add_text "1. AI Agents" --effect kinetic
4. remotion_add_text "2. Multimodal AI" --effect wave
5. remotion_add_text "3. AI Coding" --effect glitch
6. remotion_add_text "Follow for more" --effect bounce
7. remotion_render --gpu