A Claude Code Skill for creating programmatic videos with Remotion framework
npx skills add https://github.com/wshuyi/remotion-video-skill --skill remotion-videoInstall this skill with the CLI and start using the SKILL.md workflow in your workspace.
A Claude Code Skill for creating programmatic videos with Remotion framework.
Copy this entire remotion-video folder to your Claude Code skills directory:
cp -r remotion-video ~/.claude/skills/
Then restart Claude Code or start a new session.
No setup required! Edge TTS is free and works out of the box.
Just install the Python dependency:
pip install edge-tts
# Add to your ~/.zshrc or ~/.bashrc
export MINIMAX_API_KEY="your-api-key-here"
export MINIMAX_VOICE_ID="your-voice-id-here"
To get a Voice ID:
After installation, trigger the skill by saying:
Tutorial Video:
帮我做一个讲解 Python 装饰器的教程视频,5分钟左右
Data Visualization:
用 Remotion 做一个展示2024年销售数据的动画视频
Music Visualization:
帮我做一个音乐可视化视频,配合这首歌的节奏
When the skill creates a new project:
my-video-project/
├── src/
│ ├── Root.tsx # Main composition
│ ├── audioConfig.ts # Scene timing (auto-generated)
│ └── scenes/ # Scene components
├── public/
│ └── audio/ # TTS audio files
├── scripts/
│ └── generate_audio.py # TTS generation script
└── package.json
# macOS
brew install ffmpeg
# Ubuntu/Debian
sudo apt install ffmpeg
MIT