Video Compression: Difference between revisions

From David's Wiki
(Created page with " ==H264== [https://sidbala.com/h-264-is-magic/ A heavily simplified explanation]")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:


==H264==
==H264==
[https://sidbala.com/h-264-is-magic/ A heavily simplified explanation]
[https://sidbala.com/h-264-is-magic/ H.264 is Magic]
 
==Terminology==
* Encoding -
* Decoding -
* Muxing - writing encoded data (e.g. H264) into a container (e.g. MP4 or MKV)
* Keyframe - a reference frame typically used as the beginning or end of an animation sequence
* I-frame (intra-coded frame) - a complete frame which can be independently decoded.
* P-frame (predicted frame) - an intermediate frame which requires the previous frame to decode.
* B-frame (bidirectional frame) - an intermediate frame which requires the previous and next (non-B) frames to decode.

Latest revision as of 16:48, 24 February 2022

H264

H.264 is Magic

Terminology

  • Encoding -
  • Decoding -
  • Muxing - writing encoded data (e.g. H264) into a container (e.g. MP4 or MKV)
  • Keyframe - a reference frame typically used as the beginning or end of an animation sequence
  • I-frame (intra-coded frame) - a complete frame which can be independently decoded.
  • P-frame (predicted frame) - an intermediate frame which requires the previous frame to decode.
  • B-frame (bidirectional frame) - an intermediate frame which requires the previous and next (non-B) frames to decode.