What Is a Video? Definition, Formats, and How It Differs from Other Media
A video is a sequence of still images (frames) displayed rapidly enough that the human eye perceives continuous motion. The threshold is usually around 24 frames per second (fps); below that, motion looks choppy, and above it, smoothness improves with diminishing returns. This definition applies to any medium that stores or streams such a frame sequence — a downloaded MP4, a live stream, or a screen recording. The sections below cover how video works technically, the formats and codecs you'll encounter, how it differs from animation and still images, and the quality factors that determine what you actually see.
How Video Works: Frames, Frame Rate, and Persistence of Vision
Video relies on two things working together:
- Discrete frames — each frame is a complete still image captured or rendered at a specific moment.
- Persistence of vision — the eye and brain briefly retain an image after it disappears, so when frames are shown in quick succession, the gaps between them are filled in and motion appears continuous.
Frame rate is the number of frames shown per second. Common values:
| Frame rate | Typical use |
|---|---|
| 24 fps | Film and cinema |
| 25 fps | PAL broadcast (Europe, much of Asia) |
| 30 fps | NTSC broadcast, general web video |
| 60 fps | Gaming, sports, smooth motion |
| 120+ fps | High-speed capture, slow-motion source |
Higher frame rates produce smoother motion but also larger files, since more frames must be stored and transmitted.
Common Video Formats and Codecs
A video file is really two things bundled together: a container (the file format) and one or more codecs (the compression methods used inside it). The container holds the video stream, audio stream, subtitles, and metadata; the codec determines how each stream is compressed.
| Container | Common codecs inside | Typical use |
|---|---|---|
| MP4 (.mp4) | H.264, H.265/HEVC, AAC audio | Broadest compatibility; web, mobile, downloads |
| WebM (.webm) | VP8, VP9, AV1, Opus audio | Open web streaming, browsers |
| MKV (.mkv) | Almost anything | Archival, high-quality rips, multiple audio tracks |
| MOV (.mov) | H.264, ProRes | Apple ecosystem, video editing |
| AVI (.avi) | Older codecs (DivX, Xvid) | Legacy files |
When each is used:
- MP4 with H.264 is the default choice when you need a file to play almost anywhere — phones, browsers, TVs, editors.
- WebM with VP9 or AV1 is used for web streaming where open, royalty-free codecs matter, and where file size is a priority.
- MKV is common when you want to keep multiple audio tracks or subtitles in one file without re-encoding.
- MOV with ProRes appears in professional editing workflows because it preserves quality for further processing, at the cost of very large files.
The codec matters more than the extension for quality and size. Two .mp4 files can look and behave very differently depending on whether they use H.264 or H.265.
Video vs. Animation vs. Still Images
These three are often confused because they all involve visual frames, but they differ in how the frames are produced and what they represent.
- Still image — a single frame. No motion, no time dimension. Examples: a JPEG photo, a PNG graphic.
- Video — a sequence of frames captured from the real world (or rendered to look real), played back at a set frame rate. The motion corresponds to something that happened in front of a camera or was recorded from a screen.
- Animation — also a sequence of frames, but each frame is created or manipulated rather than captured continuously. The motion is authored frame by frame or generated by software. A cartoon, a motion graphic, or a 3D render is animation.
The practical difference: video records motion that already exists; animation creates the illusion of motion from individually constructed frames. Both can use the same containers and codecs, so a .mp4 can contain either. The distinction is about production method, not file type.
The Video Pipeline: From Capture to Display
Understanding the pipeline helps explain why a video might look wrong at any stage.
- Capture — a camera sensor samples light at a set resolution and frame rate, producing raw frames.
- Encoding/compression — raw frames are compressed by a codec (e.g., H.264) to reduce size. This is where quality can be lost if the bitrate is too low.
- Container packaging — the compressed video stream, audio, and metadata are written into a container like MP4 or WebM.
- Storage or streaming — the file is saved, uploaded, or sent over a network. Streaming may split it into segments for adaptive delivery.
- Decoding — the player reads the container, extracts the streams, and decompresses them back into frames.
- Display — frames are shown on a screen at the intended frame rate. If the display refresh rate doesn't match, you may see judder or tearing.
A failure at any step — a bad capture, aggressive compression, a network stall, or a mismatched refresh rate — shows up as a visible problem for the viewer.
Key Quality Factors: Resolution, Bitrate, and Compression
Three factors determine how good a video looks and how large it is.
- Resolution — the pixel dimensions of each frame (e.g., 1920×1080, 3840×2160). Higher resolution preserves more detail but requires more data per frame.
- Bitrate — how much data is used per second of video, usually measured in Mbps or kbps. Higher bitrate means less compression and better quality, but larger files. The same resolution at a low bitrate will look blocky or blurry.
- Compression — the method used to reduce data. Lossy codecs (H.264, VP9) discard information the eye is less likely to notice; lossless codecs keep everything but produce much larger files. Compression efficiency (how good the video looks at a given bitrate) is the main reason newer codecs like H.265 and AV1 are adopted.
A useful rule: resolution sets the ceiling for detail, but bitrate and compression determine how much of that detail actually survives. A 4K video at a very low bitrate can look worse than a 1080p video at a healthy bitrate.
Quick Reference
- Video = frames + frame rate + persistence of vision.
- Container vs. codec: the container is the box, the codec is how the contents are packed.
- MP4/H.264 for compatibility; WebM/VP9 or AV1 for open web streaming; MKV for multi-track archival; MOV/ProRes for editing.
- Video vs. animation: video captures existing motion; animation constructs frames.
- Quality is governed by resolution, bitrate, and compression together — not by resolution alone.