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 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
- Using the Web animation API
- Using the Fetch API
- Working with the History API
- Using the Web speech API
- Using web workers
Technologies
Topics
Learn Learn web development
Frontend developer course
- Getting started modules
- Core modules
- MDN Curriculum
- Check out the video course from Scrimba, our partner
Learn HTML
Learn CSS
Learn JavaScript
Tools Discover our tools
About Get to know MDN better
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
- How WebRTC's NetEQ Jitter Buffer Provides Smooth Audio (webrtchacks.com, June 2025)