skills/remotion-video/SKILL.md
Create programmatic videos using Remotion on MiniPC. Use when making video content, animations, motion graphics, social media clips, or any React-based video production. Covers animations, assets, audio, captions, transitions, and rendering.
npx skillsauth add kjaylee/misskim-skills remotion-videoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
MiniPC의 Remotion으로 프로그래밍 방식의 영상 제작.
$HOME/remotion-videos (MiniPC)npx remotion render <CompositionId> out/video.mp4<Composition
id="MyVideo"
component={MyComponent}
durationInFrames={150} // 30fps × 5초 = 150프레임
fps={30}
width={1920}
height={1080}
/>
const frame = useCurrentFrame(); // 현재 프레임
const { fps, durationInFrames } = useVideoConfig();
// 보간 (interpolate)
const opacity = interpolate(frame, [0, 30], [0, 1], {
extrapolateRight: 'clamp'
});
// 스프링 애니메이션
const scale = spring({ frame, fps, config: { damping: 200 } });
<Sequence from={0} durationInFrames={60}>
<IntroScene />
</Sequence>
<Sequence from={60} durationInFrames={90}>
<MainContent />
</Sequence>
<Img src={staticFile('logo.png')} /><OffthreadVideo src={staticFile('clip.mp4')} /><Audio src={staticFile('bgm.mp3')} volume={0.5} />loadFont("Noto Sans KR")@remotion/captions 패키지 사용@remotion/transitions — slide, fade, wipe 등<TransitionSeries> 컴포넌트로 장면 전환@remotion/tailwind 설정 후 className 사용 가능@react-three/fiber + @remotion/three# 기본 렌더링
cd $HOME/remotion-videos
npx remotion render MyVideo out/video.mp4
# 고품질
npx remotion render MyVideo out/video.mp4 --codec h264 --crf 18
# 투명 배경 (WebM)
npx remotion render MyVideo out/video.webm --codec vp8
# GIF
npx remotion render MyVideo out/animation.gif --every-nth-frame 2
npx remotion studio (MiniPC 브라우저)testing
게임 아이디어를 검토해 와우 팩터 5개를 추가하고, 스펙→TC→구현→QA→런칭까지 한 번에 밀어붙이는 일일 게임 런칭 써클. 기존 자동 게임 파이프라인을 대체/승격할 때 사용.
data-ai
Advanced YouTube analysis, transcripts, and metadata extraction.
development
Modern web design engineering skills including design tokens, advanced UI/UX methodologies, accessibility, and game-specific UI patterns. Use for building commercial-grade, performant, and accessible web interfaces.
development
Review UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "check accessibility", "audit design", "review UX", or "check my site against best practices".