传输协议:流式传输中的 UDP 与 TCP
了解实时流式传输为何偏好 UDP 而非 TCP,延迟、抖动和丢包如何影响实时媒体,以及 WebRTC 如何在 UDP 之上构建可靠性。
传输协议:流式传输中的 UDP 与 TCP 是 CoddyKit 上的免费 Real-Time Streaming Systems (WebRTC + Live Data) 课时。 这是第 4 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Real-Time Streaming Systems (WebRTC + Live Data) 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Real-Time Streaming Systems (WebRTC + Live Data) 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Why Transport Matters
Before media can flow, it crosses the network - and the transport protocol shapes latency and quality. The two choices are TCP and UDP.
TCP in a Nutshell
TCP guarantees ordered, reliable delivery: a lost packet is resent before later data arrives. Great for files and pages, where correctness beats speed.
The Head-of-Line Problem
For live media, TCP's reliability backfires. One lost packet stalls everything behind it during the resend - head-of-line blocking - causing freezes.
UDP in a Nutshell
UDP is connectionless and fire-and-forget: no guaranteed order, no retransmits. Packets arrive fast or not at all - ideal for time-sensitive media.
Stale Data Is Useless
In a live call, a frame from two seconds ago is useless. Better to drop a lost frame and move on than wait for a resend - which is why streaming prefers UDP.
Latency, Jitter, Loss
Three metrics define real-time quality: latency (delay), jitter (arrival-timing variation), and packet loss. Keep all three low for a smooth call.
The Jitter Buffer
Since UDP packets arrive unevenly, the receiver uses a small jitter buffer to briefly hold and reorder them before playback - smoothing timing at the cost of tiny delay.
WebRTC Uses UDP
WebRTC sends media over UDP by default, layering RTP for sequencing and timestamps plus SRTP for encryption. It falls back to TCP only when UDP is blocked.
Coping With Loss
Instead of TCP-style retransmits, WebRTC fights loss smartly: FEC sends redundant data, NACK re-requests only critical packets, and concealment hides gaps.
Adapting to the Network
WebRTC constantly measures bandwidth. If the link degrades, congestion control lowers resolution or bitrate to keep the stream alive instead of stalling.
The Right Tool
Pick the right tool: TCP when every byte must arrive in order (downloads, APIs), UDP when timeliness wins (live audio and video) - just as WebRTC does.
Quick Check
Test your understanding of streaming transport.
Recap
Recap: streaming favors UDP because TCP's reliability causes freezes. WebRTC runs RTP/SRTP over UDP with a jitter buffer, FEC, NACK, and congestion control.
常见问题解答
「传输协议:流式传输中的 UDP 与 TCP」课时是免费的吗?
是的 — 「传输协议:流式传输中的 UDP 与 TCP」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Real-Time Streaming Systems (WebRTC + Live Data) 课程的其余内容,请升级到 CoddyKit PRO。 Real-Time Streaming Systems (WebRTC + Live Data) 课程共包含 4 节课。
「传输协议:流式传输中的 UDP 与 TCP」这节课中我会学到什么?
了解实时流式传输为何偏好 UDP 而非 TCP,延迟、抖动和丢包如何影响实时媒体,以及 WebRTC 如何在 UDP 之上构建可靠性。 你通过在浏览器中直接运行的动手代码来练习 Real-Time Streaming Systems (WebRTC + Live Data),全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Real-Time Streaming Systems (WebRTC + Live Data) 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Real-Time Streaming Systems (WebRTC + Live Data) 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 4 节课,共 4 节。
「传输协议:流式传输中的 UDP 与 TCP」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Real-Time Streaming Systems (WebRTC + Live Data) 课中编写并运行代码吗?
能。每节 Real-Time Streaming Systems (WebRTC + Live Data) 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- 什么是实时通信
- WebRTC 技术概览
- WebRTC 核心组件解析
- 传输协议:流式传输中的 UDP 与 TCP