Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

remotion-videoRemotion video 开发

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

978

周安装

42

GitHub Stars

216

下载量

343
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:remotion-video(Remotion video 开发)
来源仓库:https://github.com/mathews-tom/armory
仓库路径:skills/remotion-video
安装命令:
npx skills add https://github.com/mathews-tom/armory --skill remotion-video
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mathews-tom/armory --skill remotion-video

简介

remotion-video 用于辅助视频生成、动画合成和脚本化剪辑。

  • 适合组织镜头、生成素材说明或维护合成代码。
  • 适用于 Codex、Claude、Cursor、Gemini CLI 中的视频项目开发。
  • 通过 npx 安装,需确认分辨率、时长和导出格式等参数。
  • 涉及外部素材或商业发布时,应核对版权授权和内容审核要求。

SKILL.md

Remotion Video

Creates production-grade videos using Remotion — a React framework where video is code. Every frame is a React component. Animations use spring physics and frame-based interpolation.

Reference Files

FilePurpose
references/rules/fundamentals.mduseCurrentFrame, useVideoConfig, interpolate, spring, core hooks
references/rules/animations.mdEasing, spring config, interpolateColors, timing patterns
references/rules/compositions.mdComposition, registerRoot, Folder, calculateMetadata
references/rules/media.mdImg, Video, OffthreadVideo, Audio, staticFile, async loading
references/rules/text-and-fonts.mdGoogle Fonts, local fonts, text measurement, typography
references/rules/tailwind.mdTailwindCSS integration, utility-first styling in Remotion
references/rules/audio.mdAudio component, volume curves, trimming, frame-synced audio
references/rules/subtitles.mdCaption system, SRT/VTT parsing, word-level timing
references/rules/three-d.md@remotion/three, ThreeCanvas, React Three Fiber integration
references/rules/charts.mdBar, pie, line chart animation patterns
references/rules/rendering.mdCLI render, renderMedia API, quality presets
references/rules/data-driven.mdDataset rendering, batch generation, parametric compositions
references/templates/explainer.tsxParametric tech explainer template
references/templates/product-demo.tsxProduct showcase template
references/templates/data-viz.tsxAnimated chart composition template
scripts/scaffold_project.shBootstrap a new Remotion project with TailwindCSS
scripts/render.shRender wrapper with quality presets and format options

Why Remotion

Remotion treats video as a React application. Each frame is a pure function of time — given frame N and total frames F, your component renders deterministically. This means:

  • Component composition: Nest scenes, reuse components, apply CSS.
  • Spring physics: spring() gives natural motion without hand-tweaking cubic beziers.
  • Asset pipeline: Import images, audio, video — the same way you import in React.
  • Iterative workflow: Edit code → hot-reload preview → render final. The .tsx file IS the editable intermediate.
  • Data-driven at scale: Render thousands of personalized videos by passing different props to the same composition.

Workflow

Scaffold → Compose → Preview → Iterate → Render
  1. Scaffold the project (once per video project)
  2. Interpret the user's concept — choose the right template and rule files
  3. Compose React components for each scene
  4. Preview in Remotion Studio (npm run dev)
  5. Iterate based on user feedback
  6. Render final video via scripts/render.sh

Step 0: Ensure Dependencies

Node.js 18+ is required. Check before scaffolding:

node --version   # Must be >= 18.0.0
npm --version

If Node.js is not available, inform the user — Remotion cannot run without it.

Step 1: Scaffold the Project

Run scripts/scaffold_project.sh to create a new Remotion project. The script is idempotent — it detects an existing project and skips re-initialization.

bash scripts/scaffold_project.sh my-video-project
cd my-video-project
npm run dev   # Opens Remotion Studio at localhost:3000

Step 2: Interpret the Concept

Determine the best approach. Read the relevant rule file for detailed patterns.

Content typeRule fileTemplate
Explainer / educationalfundamentals.mdexplainer.tsx
Product demo / marketinganimations.mdproduct-demo.tsx
Data visualization / animated chartcharts.mddata-viz.tsx
Video with voiceover / narrationaudio.md + subtitles.mdexplainer.tsx
Social media clip (short, looping)animations.mdproduct-demo.tsx
3D scene / abstract motion graphicsthree-d.md(custom)
Personalized / batch generationdata-driven.mdany
Video with embedded mediamedia.mdany

Step 3: Compose the Components

Core rules for writing Remotion components:

  • One composition per video: registerRoot points to one root composition.
  • Sequences for timing: Use <Sequence from={30} durationInFrames={60}> to place scenes at specific frames.
  • AbsoluteFill for layering: Use <AbsoluteFill> as the base for any full-screen element.
  • Frame-based math only: Derive all animation state from useCurrentFrame(). Never use Date.now() or setTimeout.
  • Spring over easing: Prefer spring({frame, fps}) for natural motion.
  • Props for everything variable: Hardcoded values → props. This enables data-driven rendering.

Component structure pattern

import {
  useCurrentFrame,
  useVideoConfig,
  interpolate,
  spring,
  AbsoluteFill,
  Sequence,
} from "remotion";

type MySceneProps = {
  title: string;
  accentColor: string;
};

export const MyScene: React.FC<MySceneProps> = ({ title, accentColor }) => {
  const frame = useCurrentFrame();
  const { fps, durationInFrames } = useVideoConfig();

  const opacity = interpolate(frame, [0, 30], [0, 1], {
    extrapolateRight: "clamp",
  });
  const scale = spring({ frame, fps, config: { damping: 12, stiffness: 100 } });

  return (
    <AbsoluteFill style={{ backgroundColor: "#0a0a0a" }}>
      <div
        style={{ opacity, transform: `scale(${scale})`, color: accentColor }}
      >
        {title}
      </div>
    </AbsoluteFill>
  );
};

Step 4: Preview

Remotion Studio provides hot-reload preview. Start it with:

npm run dev

Studio opens at http://localhost:3000. The timeline scrubber lets you inspect any frame.

Use <Still> component for frame-accurate screenshots during iteration.

Step 5: Iterate

RequestAction
"Slower/faster"Adjust durationInFrames on <Sequence> or change FPS
"Different color"Update props passed to composition
"Add a section"Add new <Sequence> block with incremented from offset
"Change font"Load via @remotion/google-fonts, apply as CSS fontFamily
"Add background music"Add <Audio src={staticFile('audio.mp3')} /> to root composition
"Make it loop"Set durationInFrames and design matching first/last frame state
"Add captions"See subtitles.md for SRT parsing and word-level timing

Step 6: Render

Use scripts/render.sh to render the final video:

bash scripts/render.sh --composition MyComposition --quality final --format mp4

Quality presets

PresetResolutionFPSUse case
preview480p15Fast layout check
draft720p30Client draft review
final1080p30Standard delivery
4k2160p60Presentation / cinema

Format options

FormatUse case
mp4Standard delivery (H.264)
webmWeb-optimized
gifEmbeddable in docs, social media

Error Handling

ErrorCauseResolution
node: command not foundNode.js not installedInstall Node.js 18+ from nodejs.org
Cannot find module 'remotion'Dependencies not installedRun npm install in the project directory
Composition not foundWrong composition IDCheck registerRoot and <Composition id= match
delayRender timed outAsync asset load > 30sIncrease timeout via delayRender('reason', {timeoutInMilliseconds: 60000})
OffthreadVideo failedVideo codec not supportedConvert to H.264 MP4 with ffmpeg first
ENOMEM during renderOut of memory on large compositionsReduce --concurrency flag, or lower resolution
Port 3000 already in useAnother dev server runningKill existing process or set --port 3001
Spring animation goes past 1.0Missing {extrapolateRight: 'clamp'}Add extrapolation clamp to interpolate calls
Fonts not loading in renderFont not loaded before render startsUse @remotion/google-fonts or delayRender for font face load

Limitations

  • Node.js required — Remotion is a Node.js framework. Cannot run in Python-only or headless container environments.
  • Chromium dependency — Remotion renders via Chromium. The npx remotion render command downloads it automatically, but it requires ~300MB disk space.
  • No server-side Lambda in v1 — Cloud rendering via @remotion/lambda is deferred to a future skill version. Local rendering only.
  • Large renders are slow — A 60-second 1080p video at 30fps = 1800 frames rendered through Chromium. Plan for 10-30 minutes on a typical laptop.
  • GIF size — GIFs at full resolution are large. Limit to 480p and <10 seconds for embeddable GIFs.
  • Audio in preview — Remotion Studio supports audio playback in preview. Rendered audio requires ffmpeg.

Design Principles

  • Frame-based thinking: Every visual state is a function of the current frame number. No timers, no intervals.
  • Composition-first: Split video into logical <Sequence> blocks. Each scene is its own component.
  • Spring over easing: spring() gives physically accurate motion. Only use interpolate with easing when spring doesn't fit.
  • Props for content: Never hardcode strings, colors, or data inside components. Pass via props to enable reuse.
  • Type everything: All composition props have TypeScript types enforced via z.infer<typeof schema> (Zod) or explicit interfaces.

Cross-Reference

For mathematical animations, algorithm visualizations, or when Node.js is unavailable, use concept-to-video (Manim/Python) instead. Manim runs in any Python environment and excels at geometric proofs, equation animations, and LaTeX rendering.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.33%
按下载量换算128

Claude

32.05%
按下载量换算110

Cursor

18.75%
按下载量换算64

Gemini CLI

9.43%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills