Resources: FAQs

How Does Simulcast Let One Video Call Serve Every Viewer's Bandwidth?

How simulcast lets one video call serve every viewer's bandwidth, what it costs the sender, and how it differs from SVC, transcoding, and multistreaming.

Read more
13 min read

How Does WebRTC Connect Two Devices Behind Different Routers?

How WebRTC gets two devices behind different routers to connect, covering NAT, STUN, signaling, ICE hole punching, TURN relays, and the RTCPeerConnection API.

Read more
18 min read

How Does a Jitter Buffer Stop Video Calls From Sounding Choppy?

Choppy call audio is usually jitter, not bandwidth. See how a jitter buffer reorders and paces packets, how it picks its size, and how it conceals lost packets.

Read more
9 min read

What Is Frame Rate & How Does It Work?

Frame rate controls one specific property of video, how densely motion gets sampled over time, and most decisions around it get easier once you know which one. This covers what frame rate measures, how it differs from resolution and bitrate, how to pick a rate, and the bugs that come from treating fps as one uniform number.

Read more
8 min read

How Does Echo Cancellation Work?

Echo happens because every device on a call plays and records audio at once, and the delay added by network transit and buffering is what makes the overlap audible instead of unnoticeable. This covers how acoustic echo cancellation works, WebRTC's default AEC3 pipeline, why users still hear echo, and how to fix it.

Read more
10 min read

What Is ICE Protocol and How Does it Work?

WebRTC promises a direct connection between two devices, and the internet makes that hard. ICE is the part of the stack that closes the gap, discovering candidate addresses, exchanging them, and testing pairs until it finds one that actually works. This covers how ICE works, STUN vs. TURN, Trickle ICE, and how to debug calls that won't connect.

Read more
10 min read

What Is Voice Activity Detection?

Voice activity detection tells a voice agent when someone is actually speaking. Here is how VAD works, why it drives turn-taking and interruptions, and where Silero VAD fits in a real-time pipeline.

Read more
9 min read

How Do You Introduce Feed Ranking Without Increasing Latency?

You introduce feed ranking without increasing latency by moving scoring to write time, putting a cheap retrieval stage in front of your ranking model, and fetching features in parallel rather than in series.

Read more
10 min read