skills/video-pro/SKILL.md
MiniPC 노드(Remotion + FFmpeg)를 활용한 실전형 비디오 에디팅 스킬. 프로그래밍 방식의 영상 제작부터 컷 편집, 자막 합성, 포맷 변환까지 지원합니다.
npx skillsauth add kjaylee/misskim-skills video-proInstall 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을 이용한 코드 기반 영상 생성과 FFmpeg을 이용한 정밀 가공을 결합합니다.
<MINIPC_IP> (Tailscale)$HOME/remotion-videosReact 코드를 MP4 영상으로 렌더링합니다. 데이터 기반의 개인화 영상 제작에 탁월합니다.
실행 방법:
# MiniPC에서 실행
cd $HOME/remotion-videos
npx remotion render <CompositionId> out/video.mp4 --props '{"title": "안녕, 미스 김!"}'
가장 빈번하게 사용되는 실전용 명령어 모음입니다.
| 작업 | 명령어 |
|------|-------|
| 컷 편집 | ffmpeg -y -i input.mp4 -ss 00:00:10 -to 00:00:20 -c copy output.mp4 |
| 자막 합성(Burn-in) | ffmpeg -y -i input.mp4 -vf "subtitles='input.srt'" output.mp4 |
| 포맷 변환 (MOV→MP4) | ffmpeg -y -i input.mov -c:v libx264 -c:a aac output.mp4 |
| 오디오 추출 (MP3) | ffmpeg -y -i input.mp4 -vn -acodec libmp3lame output.mp3 |
| 영상 음소거 | ffmpeg -y -i input.mp4 -an -c:v copy output.mp4 |
| GIF 변환 | ffmpeg -y -i input.mp4 -vf "fps=15,scale=480:-1" -loop 0 output.gif |
| 해상도 변경 (720p) | ffmpeg -y -i input.mp4 -vf "scale=1280:720" -c:a copy output.mp4 |
오디오를 텍스트로 변환하여 자막 파일을 생성하고 영상에 입히는 워크플로우입니다.
.srt 파일을 생성합니다.subtitles 필터를 사용하여 영상에 자막을 영구적으로 입힙니다 (Burn-in).서브에이전트가 MiniPC에 명령을 내릴 때 다음 패턴을 사용합니다.
// MiniPC에서 렌더링 후 결과물 확인
await nodes.run({
node: "MiniPC",
command: "cd $HOME/remotion-videos && npx remotion render MyComp out/result.mp4"
});
$HOME/ 기준 절대 경로를 확인하세요.subtitles 필터 사용 시 경로에 특수문자가 있다면 이스케이프 처리가 필요할 수 있습니다.미스 김의 비디오 스킬은 실전에서의 효율성과 결과물의 품질을 최우선으로 합니다. 💋
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".