C.W.K.
Stream
Lesson 05 of 07 · published

Thumbnail Sheet (Tile / Montage)

~8 min · thumbnail, tile, preview

Level 0Viewer
0 XP0/73 lessons0/15 achievements
0/100 XP to next level100 XP to go0% complete

Storyboard / 미리보기 grid

tile filter 가 N frame 을 single grid image 로 조립. Video index sheet, scene-by-scene overview, hover-preview thumbnail (HLS streaming 이 scrubbing preview 에 사용) 에 유용.

Code

Thumbnail sheet recipe·bash
# 4×4 grid, 5초마다 frame, 320px 폭 tile
ffmpeg -i in.mp4 \
  -vf "fps=1/5,scale=320:-1,tile=4x4" \
  -frames:v 1 \
  thumbs.png

# 8 frame 을 clip 에 evenly 분포 (계산)
DURATION=$(ffprobe -v error -show_entries format=duration \
  -of default=noprint_wrappers=1:nokey=1 in.mp4)
INTERVAL=$(awk -v d="$DURATION" 'BEGIN { printf "%.2f", d/8 }')
ffmpeg -i in.mp4 \
  -vf "fps=1/${INTERVAL},scale=320:-1,tile=4x2" \
  -frames:v 1 \
  storyboard.png

# 'Smart' thumbnail (FFmpeg 이 흥미로운 frame 픽)
ffmpeg -i in.mp4 \
  -vf "thumbnail=300,scale=320:-1,tile=4x4" \
  -frames:v 1 \
  smart_thumbs.png
# thumbnail=300 = '매 300-frame batch 에서 가장 representative frame 픽'.

External links

Exercise

5–10 분 video 픽. Frame evenly 분포 4×4 storyboard. 그 다음 'smart' 선택 위해 thumbnail filter 로 4×4. 비교 — smart 픽이 실제로 더 흥미로운 frame 캡처해?

Progress

Progress is local-only — sign in to sync across devices.
이 페이지에서 버그를 발견하셨거나 피드백이 있으세요?문제 신고

댓글 0

🔔 답글 알림 (로그인 필요)
로그인댓글을 남기려면 로그인해 주세요.

아직 댓글이 없어요. 첫 댓글을 남겨보세요.