Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问许可证需确认审计通过

remotion-video-productionRemotion video production 视频

Agent Skill

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

总安装

186

周安装

8

GitHub Stars

1

下载量

65
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-unity3d --skill remotion-video-production

简介

remotion-video-production 基于 Remotion 框架实现可编程视频生成,支持自动化内容制作。

  • 适用于营销宣传、产品演示及游戏预告片等需要批量生产的视频场景。
  • 输入包含时长、分辨率、音轨风格等参数,输出可直接用于发布平台。
  • 使用外部素材或人物肖像时应提前核查版权许可与合规要求。
  • 建议先在本地渲染小样片验证合成逻辑与时间轴准确性。

SKILL.md

Remotion Video Production

Remotion을 사용한 프로그래머블 비디오 제작 스킬입니다. 텍스트 지침에서 자동화된 비디오를 생성하고, 일관된 브랜드 비디오를 대규모로 제작합니다.

When to use this skill

  • 자동화된 비디오 생성: 텍스트 지침에서 비디오 생성
  • 브랜드 비디오 제작: 일관된 스타일의 대규모 비디오
  • 프로그래머블 콘텐츠: 내레이션, 비주얼, 애니메이션 통합
  • 마케팅 콘텐츠: 제품 소개, 온보딩, 프로모션 비디오

Quick Start — Unity3D 게임 트레일러

Unity3D 모바일 RPG 앱스토어 출시용 60초 게임 트레일러 제작:

remotion-video-production "Unity3D 게임 트레일러 60초"

입력 스펙:

video_spec:
  title: "[게임명] — Launch Trailer"
  audience: 모바일 게이머, 앱스토어 방문자
  goal: 설치 전환율 향상
  duration: 60s
  aspect_ratio: "16:9"   # 유튜브/스팀용; 9:16은 앱스토어 프리뷰
  tone: cinematic
  voice:
    style: 내레이션 없음 (BGM + 자막)
    language: 한국어/영어 이중 자막

씬 구성 (60초 트레일러):

Scene 1 — Hook       (0:00-0:05)  게임 로고 + "Coming Soon" 텍스트
Scene 2 — World      (0:05-0:15)  게임 세계관 몽타주 (인게임 씬 컷)
Scene 3 — Gameplay   (0:15-0:35)  전투/탐험 핵심 루프 시연
Scene 4 — Features   (0:35-0:50)  차별화 기능 3가지 텍스트 오버레이
Scene 5 — CTA        (0:50-1:00)  "지금 다운로드" + 앱스토어 배지

Remotion 프로젝트 구조:

src/
├── Video.tsx              # 메인 컴포지션
├── scenes/
│   ├── HookScene.tsx
│   ├── WorldScene.tsx
│   ├── GameplayScene.tsx
│   ├── FeaturesScene.tsx
│   └── CTAScene.tsx
└── assets/
    ├── logos/game-logo.svg
    ├── screenshots/       # Unity3D 인게임 스크린샷
    └── audio/bgm-epic.mp3

예상 산출물: Remotion TSX 파일 5개 + 씬 플랜 + 에셋 체크리스트 + 렌더 커맨드


Instructions

Step 1: Define the Video Spec

video_spec:
  audience: [타겟 오디언스]
  goal: [비디오 목적]
  duration: [총 길이 - 30s, 60s, 90s]
  aspect_ratio: "16:9" | "1:1" | "9:16"
  tone: "fast" | "calm" | "cinematic"
  voice:
    style: [내레이션 스타일]
    language: [언어]

Step 2: Outline Scenes

씬 구조화 템플릿:

## Scene Plan

### Scene 1: Hook (0:00 - 0:05)
- **Visual**: 제품 로고 페이드인
- **Audio**: 업비트 인트로
- **Text**: "Transform Your Workflow"
- **Transition**: 페이드 → Scene 2

### Scene 2: Problem (0:05 - 0:15)
- **Visual**: 문제 상황 일러스트
- **Audio**: 내레이션 시작
- **Text**: 핵심 메시지 오버레이
- **Transition**: 슬라이드 좌측

### Scene 3: Solution (0:15 - 0:30)
...

Step 3: Prepare Assets

# 에셋 체크리스트
assets/
├── logos/
│   ├── logo-main.svg
│   └── logo-white.svg
├── screenshots/
│   ├── dashboard.png
│   └── feature-1.png
├── audio/
│   ├── bgm.mp3
│   └── narration.mp3
└── fonts/
    └── brand-font.woff2

에셋 준비 규칙:

  • 로고: SVG 또는 고해상도 PNG
  • 스크린샷: 비율에 맞게 정규화
  • 오디오: MP3 또는 WAV, 볼륨 정규화
  • 폰트: 웹폰트 또는 로컬 폰트 파일

Step 4: Implement Remotion Composition

// src/Video.tsx
import { Composition } from 'remotion';
import { IntroScene } from './scenes/IntroScene';
import { ProblemScene } from './scenes/ProblemScene';
import { SolutionScene } from './scenes/SolutionScene';
import { CTAScene } from './scenes/CTAScene';

export const RemotionVideo: React.FC = () => {
  return (
    <>
      <Composition
        id="ProductIntro"
        component={ProductIntro}
        durationInFrames={1800} // 60s at 30fps
        fps={30}
        width={1920}
        height={1080}
      />
    </>
  );
};

// Scene Component Example
const IntroScene: React.FC<{ frame: number }> = ({ frame }) => {
  const opacity = interpolate(frame, [0, 30], [0, 1]);

  return (
    <AbsoluteFill style={{ opacity }}>
      <Logo />
      <Title>Transform Your Workflow</Title>
    </AbsoluteFill>
  );
};

Step 5: Render and QA

# 1. 프리뷰 렌더링 (저품질)
npx remotion preview src/Video.tsx

# 2. QA 체크
- [ ] 타이밍 확인
- [ ] 오디오 싱크
- [ ] 텍스트 가독성
- [ ] 전환 부드러움

# 3. 최종 렌더링
npx remotion render src/Video.tsx ProductIntro out/video.mp4

Examples

Example 1: Product Intro Video

Prompt:

Create a 60s product intro video with 6 scenes,
upbeat tone, and 16:9 output. Include a CTA at the end.

Expected output:

## Scene Breakdown
1. Hook (0:00-0:05): Logo + tagline
2. Problem (0:05-0:15): Pain point visualization
3. Solution (0:15-0:30): Product demo
4. Features (0:30-0:45): Key benefits (3 items)
5. Social Proof (0:45-0:55): Testimonial/stats
6. CTA (0:55-1:00): Call to action + contact

## Remotion Structure
- src/scenes/HookScene.tsx
- src/scenes/ProblemScene.tsx
- src/scenes/SolutionScene.tsx
- src/scenes/FeaturesScene.tsx
- src/scenes/SocialProofScene.tsx
- src/scenes/CTAScene.tsx

Example 2: Onboarding Walkthrough

Prompt:

Generate a 45s onboarding walkthrough using screenshots,
with callouts and 9:16 format for mobile.

Expected output:

  • Scene plan with 5 steps
  • Asset list (screenshots, callout arrows)
  • Text overlays and transitions
  • Mobile-safe margins applied

Best practices

  1. Short scenes: 씬당 5-10초로 명확하게
  2. Consistent typography: 타이포그래피 스케일 정의
  3. Audio sync: 내레이션 큐와 비주얼 정렬
  4. Template reuse: 재사용 가능한 컴포지션 저장
  5. Safe zones: 모바일 비율 시 여백 확보

Common pitfalls

  • 텍스트 과부하: 씬당 텍스트 양 제한
  • 모바일 세이프존 무시: 9:16 비율 시 가장자리 확인
  • QA 전 최종 렌더링: 항상 프리뷰 먼저 확인

Troubleshooting

Issue: Audio and visuals out of sync

Cause: 프레임 타이밍 불일치 Solution: 프레임 재계산 및 타임스탬프 정렬

Issue: Render is slow or fails

Cause: 무거운 에셋 또는 효과 Solution: 에셋 압축 및 애니메이션 단순화

Issue: Text unreadable

Cause: 폰트 크기 또는 대비 부족 Solution: 최소 24px 폰트, 고대비 색상 사용


Output format

## Video Production Report

### Spec
- Duration: 60s
- Aspect Ratio: 16:9
- FPS: 30

### Scene Plan
| Scene | Duration | Visual | Audio | Transition |
|-------|----------|--------|-------|------------|
| Hook  | 0:00-0:05 | Logo fade | BGM start | Fade |
| ...   | ...      | ...    | ...   | ...  |

### Assets
- [ ] logo.svg
- [ ] screenshots (3)
- [ ] bgm.mp3
- [ ] narration.mp3

### Render Checklist
- [ ] Preview QA passed
- [ ] Audio sync verified
- [ ] Safe zones checked
- [ ] Final render complete

Multi-Agent Workflow

Validation & Retrospectives

  • Round 1 (Orchestrator): 스펙 완전성, 씬 커버리지
  • Round 2 (Analyst): 내러티브 일관성, 페이싱 리뷰
  • Round 3 (Executor): 렌더 준비 상태 체크리스트 검증

Agent Roles

AgentRole
Claude씬 플래닝, 스크립트 작성
Gemini에셋 분석, 최적화 제안
CodexRemotion 코드 생성, 렌더링 실행

Metadata

Version

  • Current Version: 1.0.0
  • Last Updated: 2026-01-21
  • Compatible Platforms: Claude, ChatGPT, Gemini, Codex

Related Skills

Tags

#video #remotion #animation #storytelling #automation #react

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.4%
按下载量换算22

Claude

31.87%
按下载量换算21

Cursor

19.56%
按下载量换算13

Gemini CLI

9.92%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills