브라우저에서 동영상에 정통 VHS 효과를 추가하는 방법

작성자

카테고리:

← 피드로
DEV Community · Veronica Lin · 2026-08-07 개발(SW)

Veronica Lin

If you’ve wanted that worn VHS look on a video without opening After Effects, here’s what actually creates the effect and how to do it in the browser.

What makes footage look “VHS”

Four things do most of the work:

  1. Tracking lines — horizontal distortion bands that drift vertically.
  2. Chroma shift — the red/blue channels offset from green, visible at edges.
  3. Grain and noise — analog signal hiss, brighter in dark areas.
  4. Date stamp — that blocky timestamp in the corner.

Strip any of these and it stops reading as VHS. Add all four and even a clean clip looks dubbed.

Browser approaches

Canvas 2D — read each frame’s pixels, shift the R and B channels a few pixels apart for chroma shift, overlay a noise pattern, and draw moving horizontal bands. Cheap and good enough for short clips.

CSS filters — for static polish, filter: contrast() saturate() hue-rotate() plus an animated noise overlay gets you 70% of the look with almost no code. No per-pixel work.

WebGL shaders — the convincing route. A fragment shader can do time-based distortion, real chroma aberration, and scanlines at 60fps. More setup, best result.

The shortcut

If you just want the result and not the implementation, run the clip through this free online VHS video filter — it applies the full effect (tracking, chroma shift, grain, date stamp) in the browser, no install, no upload to a server. Handy when you need one clip done fast.

Closing

The interesting thing about the VHS aesthetic is that it’s entirely reproducible from four well-understood artifacts. Once you know which visual cue does what, you can implement it at whatever fidelity your stack allows — from a 10-line CSS version up to a full shader.

원문에서 계속 ↗

코멘트

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다