chore(demo): 시연 영상·자막 최종본을 저장소에 포함 - #20
Merged
Merged
Conversation
지금까지는 mp4/srt 를 .gitignore 로 제외하고 스크립트로만 재생성하게 해 뒀는데, 그러면 영상을 한 번 보려고 Rust 툴체인·Playwright·ffmpeg 를 전부 갖춰야 한다. 심사·리뷰처럼 "받아서 바로 보기"가 필요한 쪽이 더 흔하므로 최종본 한 벌은 커밋한다. - demo/xazz_demo.mp4 1920×1080 · 2분 45초 · 자막 새겨짐 (1.1MB) - demo/xazz_demo.srt 동일 타임코드 자막 30컷 .gitignore 는 demo/*.mp4 · demo/*.srt 를 유지한 채 이 두 파일만 부정 패턴 (!)으로 예외 처리했다. 중간 산출물과 로컬에서 만드는 xazz_demo_voiced.mp4 · narration.wav 는 그대로 제외된다. *.csv 만 LFS 대상이라 mp4 는 일반 blob 으로 들어간다. 다시 렌더할 때마다 커밋하면 1MB 바이너리가 이력에 쌓이므로, 대본이나 화면이 실제로 바뀌었을 때만 갱신한다 — README 에 같은 주의를 적어 뒀다. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FeRK57KgN47ALzaGVXqDFp
SakJaeLim
marked this pull request as ready for review
August 27, 2026 11:40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
시연 영상과 자막 최종본을 저장소에 넣습니다. PR #19 후속입니다.
왜
PR #19 에서는 mp4/srt 를
.gitignore로 제외하고 스크립트로만 재생성하게 해 뒀습니다. 그러면 영상을 한 번 보려고 Rust 툴체인 · Playwright · ffmpeg 를 전부 갖춰야 합니다.심사·리뷰처럼 "받아서 바로 보기"가 필요한 쪽이 더 흔하니, 최종본 한 벌은 커밋하는 게 맞다고 판단했습니다.
무엇이 들어갔나
demo/xazz_demo.mp4demo/xazz_demo.srt.gitignore처리demo/*.mp4·demo/*.srt규칙은 그대로 두고, 이 두 파일만 부정 패턴으로 예외 처리했습니다.중간 산출물(
_capture/,_build/,_shots/,_voice/)과 로컬에서 만드는xazz_demo_voiced.mp4·narration.wav는 그대로 제외됩니다.git check-ignore로 네 경우 모두 확인했습니다.LFS
.gitattributes는*.csv만 LFS 대상이라 mp4 는 일반 blob 으로 들어갑니다. 스테이징된 blob 이 포인터가 아닌 실제 1,075,493 바이트 ISO Media 파일인 것을 확인했습니다.주의
다시 렌더할 때마다 커밋하면 1MB 바이너리가 이력에 계속 쌓입니다. 대본이나 화면이 실제로 바뀌었을 때만 갱신하도록
demo/README.md에 같은 주의를 적어 뒀습니다.아직 남은 것
커밋된 영상에는 음성 트랙이 없습니다. 제출용 최종본은 로컬에서 아래를 돌려 만드는
xazz_demo_voiced.mp4입니다.TTS 엔드포인트가 이 실행 환경의 네트워크 정책으로 막혀 있어 음성만 여기서 만들지 못합니다 (PR #19 에 적어 둔 제약 그대로입니다).
Generated by Claude Code