remotion-video-production
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
- Short scenes: 씬당 5-10초로 명확하게
- Consistent typography: 타이포그래피 스케일 정의
- Audio sync: 내레이션 큐와 비주얼 정렬
- Template reuse: 재사용 가능한 컴포지션 저장
- 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
| Agent | Role |
|---|---|
| Claude | 씬 플래닝, 스크립트 작성 |
| Gemini | 에셋 분석, 최적화 제안 |
| Codex | Remotion 코드 생성, 렌더링 실행 |
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
More from jeo-tech-ai/oh-my-unity3d
bmad-gds
AI-driven Game Development Studio using BMAD methodology. Covers the Execute and Assess phases of the BMAD TEA (Think→Execute→Assess) loop — the core Specification-Driven Development (SDD) cycle. Routes game projects through Pre-production, Design, Architecture, Production, and Game Testing phases with 6 specialized agents. Supports Unity, Unreal Engine, Godot, and custom engines.
11code-review
Conduct thorough, constructive code reviews for quality and security. Use when reviewing pull requests, checking code quality, identifying bugs, or auditing security. Handles best practices, SOLID principles, security vulnerabilities, performance analysis, and testing coverage.
10unity-mcp
|
10changelog-maintenance
Maintain a clear and informative changelog for software releases. Use when documenting version changes, tracking features, or communicating updates to users. Handles semantic versioning, changelog formats, and release notes.
9ohmg
Ultimate multi-agent framework for Google Antigravity. Orchestrates specialized domain agents (PM, Frontend, Backend, Mobile, QA, Debug) via Serena Memory.
9backend-testing
Write comprehensive backend tests including unit tests, integration tests, and API tests. Use when testing REST APIs, database operations, authentication flows, or business logic. Handles Jest, Pytest, Mocha, testing strategies, mocking, and test coverage.
9