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

Color 조정

~10 min · color, eq, curves, grading

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

손 닿는 filter

  • eq — brightness / contrast / saturation / gamma. 가장 빠른 fix.
  • colorchannelmixer — channel 별 matrix mixing. 각 RGB channel fine control.
  • curves — Photoshop-스타일 tone curve, vintage, color_negative 같은 preset.
  • colorbalance — shadow / midtone / highlight cast 조정.

일상 fix

너무 어두운 폰 footage: eq=brightness=0.08:contrast=1.1:saturation=1.2. 너무 flat 한 drone footage: eq=contrast=1.15:saturation=1.3. 흑백 look: hue=s=0.

진지한 grading

진지한 color grading 엔 LUT (look-up table). lut3d=file=warm.cube 와 DaVinci Resolve, Premiere, Photoshop 에서 export 한 .cube 파일 사용.

Code

Quick color fix·bash
# 약간 brighten + saturation boost (폰 footage 구조)
ffmpeg -i in.mp4 \
  -vf "eq=brightness=0.08:contrast=1.1:saturation=1.2" \
  -c:v libx264 -crf 20 -c:a copy out.mp4

# 흑백
ffmpeg -i in.mp4 -vf "hue=s=0" -c:v libx264 -crf 20 -c:a copy bw.mp4

# Vintage curve preset
ffmpeg -i in.mp4 -vf "curves=preset=vintage" -c:v libx264 -crf 20 -c:a copy vintage.mp4

# Highlight 에 warm cast, shadow 에 cool cast
ffmpeg -i in.mp4 \
  -vf "colorbalance=rs=0.1:bs=-0.1:rh=-0.1:bh=0.1" \
  -c:v libx264 -crf 20 -c:a copy cinematic.mp4
3D LUT 적용·bash
# Grading 소프트웨어의 .cube 파일
ffmpeg -i in.mp4 -vf "lut3d=file=looks/film_emulation.cube" \
  -c:v libx264 -crf 20 -preset slow -c:a copy graded.mp4

# LUT + eq tweak combine
ffmpeg -i in.mp4 \
  -vf "lut3d=file=warm.cube,eq=contrast=1.05:saturation=1.1" \
  -c:v libx264 -crf 20 -preset slow -c:a copy out.mp4

External links

Exercise

노출 mediocre 한 폰 video 잡아. eq=brightness=0.08:contrast=1.1:saturation=1.15 적용 + 비교. 그 다음 free .cube LUT 다운 (rocketstock.com 에 freebie 있음) 후 적용. LUT-graded 가 더 'cinematic' 보였어, 아니면 그냥 다른?

Progress

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

댓글 0

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

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