kb/data/developer.mozilla.org/en-US/docs/Glossary/Jitter-0.md

10 KiB

title chunk source category tags date_saved instance
Jitter - Glossary | MDN 1/3 https://developer.mozilla.org/en-US/docs/Glossary/Jitter reference web, html, css, javascript, documentation 2026-05-05T05:35:58.567101+00:00 kb-cron

MDN HTML HTML: Markup language

HTML reference

HTML guides

Markup languages

CSS CSS: Styling language

CSS reference

CSS guides

Layout cookbook

JavaScriptJS JavaScript: Scripting language

JS reference

JS guides

Web APIs Web APIs: Programming interfaces

Web API reference

Web API guides

All All web technology

Technologies

Topics

Learn Learn web development

Frontend developer course

Learn HTML

Learn CSS

Learn JavaScript

Tools Discover our tools

About Get to know MDN better

Blog

  1. Glossary
  2. Jitter

Jitter

Jitter is the term used in computer networking to refer to packet delay variation — the variance in the rate at which packets arrive at a destination (the average of the squared difference from the mean packet arrival rate). "High jitter" indicates that packets are arriving at significantly varying rates, possibly due to network congestion, packet loss, and routing of packets in a stream through different paths. High jitter can significantly degrade the performance of real-time web applications, including voice/video streaming and online gaming.

In this article

Jitter buffer

Network protocols and applications, such as WebRTC, use a "jitter buffer" to mitigate the effects of packet delay variation. Jitter buffers temporarily store incoming packets and then release them at a steady, synchronized rate. They may also use forward error correction to fix corrupted packets, re-request missing packets, insert audio samples to conceal missing packets, slow down or speed up sample playout, and so on. This process smooths out the arrival times of packets and ensures a more consistent playout of real-time audio and video.

See also