<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>https://web.dev/</id>
  <title>Huib Kleinhout on web.dev</title>
  <updated>2026-04-15T23:21:06Z</updated>
  <author>
    <name>Huib Kleinhout</name>
  </author>
  <link href="https://web.dev/authors/huib/feed.xml" rel="self"/>
  <link href="https://web.dev/"/>
  <icon>https://web-dev.imgix.net/image/admin/ljpewM8syhxW7SBleO58.jpg?auto=format</icon>
  <logo>https://web.dev/images/shared/rss-banner.png</logo>
  <subtitle>Our latest news, updates, and stories by Huib Kleinhout.</subtitle>
  
  
  <entry>
    <title>WebRTC is now a W3C and IETF standard</title>
    <link href="https://web.dev/webrtc-standard-announcement/"/>
    <updated>2021-01-26T00:00:00Z</updated>
    <id>https://web.dev/webrtc-standard-announcement/</id>
    <content type="html" mode="escaped">&lt;p&gt;The process of defining a web standard is a lengthy process that ensures usefulness, consistency and
compatibility across browsers. Today &lt;a href=&quot;https://www.w3.org/2021/01/pressrelease-webrtc-rec.html.en&quot; rel=&quot;noopener&quot;&gt;the W3C and
IETF&lt;/a&gt; mark the completion of perhaps one
of the most important standards during the pandemic: WebRTC.&lt;/p&gt;
&lt;aside class=&quot;aside flow bg-state-info-bg color-state-info-text&quot;&gt;&lt;div class=&quot; flow&quot;&gt; Check out the &lt;a href=&quot;https://codelabs.developers.google.com/codelabs/webrtc-web&quot;&gt;Real-time communication with WebRTC&lt;/a&gt; codelab for a hands-on walkthrough of implementing WebRTC. &lt;/div&gt;&lt;/aside&gt;
&lt;h2 id=&quot;history&quot;&gt;History &lt;a class=&quot;headline-link&quot; href=&quot;https://web.dev/webrtc-standard-announcement/#history&quot;&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;WebRTC is a platform giving browsers, mobile apps, and desktop apps real-time communication
capabilities, typically used for video calling. The platform consists of a comprehensive set of
technologies and standards. Google initiated the idea to create WebRTC in 2009, as an alternative to
Adobe Flash and desktop applications that couldn&#39;t run in the browser. The previous generation of
browser-based products were built on top of licensed proprietary technology. Various products were
built with this technology, including Hangouts. Google then acquired the companies it had been
licensing the technology from and made it available as the open source WebRTC project. This codebase
is integrated in Chrome and used by the majority of applications using WebRTC. Together with other
browser vendors and industry leaders such as Mozilla, Microsoft, Cisco, and Ericsson, the
standardization of WebRTC was kicked off in both the W3C and IETF.  In 2013, Mozilla and Google
&lt;a href=&quot;https://blog.chromium.org/2013/02/hello-firefox-this-is-chrome-calling.html&quot; rel=&quot;noopener&quot;&gt;demonstrated&lt;/a&gt; video
calling between their browsers. Through the evolution of the standard, many architectural
discussions had led to implementation differences across browsers and challenged compatibility and
interoperability. Most of these disagreements were ultimately settled as the standard became
finalized in the past years. The WebRTC specification is now accompanied with a
&lt;a href=&quot;https://wpt.fyi/results/webrtc?label=experimental&amp;amp;label=master&amp;amp;aligned&quot; rel=&quot;noopener&quot;&gt;full set of platform tests&lt;/a&gt;
and tools to address compatibility and browsers have largely adapted their implementations
accordingly. This brings an end to a challenging period where web developers had to continuously
adopt their services to different browser implementations and specification changes.&lt;/p&gt;
&lt;h2 id=&quot;architecture&quot;&gt;Architecture and functionality &lt;a class=&quot;headline-link&quot; href=&quot;https://web.dev/webrtc-standard-announcement/#architecture&quot;&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;The &lt;a href=&quot;https://developer.mozilla.org/docs/Web/API/RTCPeerConnection&quot; rel=&quot;noopener&quot;&gt;&lt;code&gt;RTCPeerConnection&lt;/code&gt; API&lt;/a&gt; is
the central part of the WebRTC specification. &lt;code&gt;RTCPeerConnection&lt;/code&gt; deals with connecting two
applications on different endpoints to communicate using a peer-to-peer protocol. The &lt;code&gt;PeerConnection&lt;/code&gt;
API interacts closely with
&lt;a href=&quot;https://developer.mozilla.org/docs/Web/API/MediaDevices/getUserMedia&quot; rel=&quot;noopener&quot;&gt;&lt;code&gt;getUserMedia&lt;/code&gt;&lt;/a&gt; for
accessing camera and microphone, and
&lt;a href=&quot;https://developer.mozilla.org/docs/Web/API/MediaDevices/getDisplayMedia&quot; rel=&quot;noopener&quot;&gt;&lt;code&gt;getDisplayMedia&lt;/code&gt;&lt;/a&gt; for
capturing screen content. WebRTC allows you to send and receive streams that include audio and/or
video content, as well as arbitrary binary data through the &lt;code&gt;DataChannel&lt;/code&gt;. The media functionality for
processing, encoding, and decoding audio and video provides the core of any WebRTC implementation.
WebRTC supports various audio codecs, with Opus being the most used and versatile. WebRTC
implementations are required to support both Google&#39;s free-to-use VP8 video codec and H.264 for
processing video. WebRTC connections are always encrypted, which is achieved through two existing
protocols: DTLS and SRTP.  WebRTC leans heavily on existing standards and technologies, from video
codecs (VP8, H264), network traversal (ICE), transport (RTP, SCTP), to media description protocols
(SDP). This is tied together in over 50 RFCs.&lt;/p&gt;
&lt;h2 id=&quot;use-cases&quot;&gt;Use cases: when it&#39;s a matter of milliseconds &lt;a class=&quot;headline-link&quot; href=&quot;https://web.dev/webrtc-standard-announcement/#use-cases&quot;&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;WebRTC is widely used in time-critical applications such as remote surgery, system monitoring, and
remote control of autonomous cars, and voice or video calls built on UDP where buffering is not
possible. Nearly all browser-based video callings services from companies such as Google, Facebook,
Cisco, RingCentral, and Jitsi use WebRTC. Google Stadia and NVIDIA GeForce NOW use WebRTC to get the
stream of gameplay from the cloud to the web browser without perceivable delay.&lt;/p&gt;
&lt;h2 id=&quot;performance&quot;&gt;Pandemic puts focus on video calling performance &lt;a class=&quot;headline-link&quot; href=&quot;https://web.dev/webrtc-standard-announcement/#performance&quot;&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;Over the past year, WebRTC has seen a 100X increase of usage in Chrome due to increased video
calling from within the browser. Recognizing that video calling has become a fundamental part of
many people&#39;s lives during the pandemic, browser vendors have begun to optimize the technologies
that video calling depends on. This was particularly important as resource demanding large meetings
and video effects in video meetings became more common when employees and students started to work
and study from home.  In the past year Chrome has become up to 30% more battery friendly for video
calling, with more optimizations to come for heavy usage scenarios. Mozilla, Apple, and Microsoft
all &lt;a href=&quot;https://www.youtube.com/watch?v=YZROn-WsyO4&quot; rel=&quot;noopener&quot;&gt;have made significant improvements&lt;/a&gt; in their
implementation of WebRTC through the pandemic, in particular in making sure they adhere to the now
formalized standard.&lt;/p&gt;
&lt;h2 id=&quot;&quot;&gt;The future of WebRTC &lt;a class=&quot;headline-link&quot; href=&quot;https://web.dev/webrtc-standard-announcement/#&quot;&gt;#&lt;/a&gt;&lt;/h2&gt;
&lt;p&gt;While WebRTC is now completed as a W3C standard, improvements continue. The new video codec AV1
which
&lt;a href=&quot;https://blog.google/products/duo/4-new-google-duo-features-help-you-stay-connected/&quot; rel=&quot;noopener&quot;&gt;saves up to 50% of bandwidth&lt;/a&gt;
is becoming available in WebRTC and web browsers. Continued improvements in the open source code
base are expected to further reduce delay and improve the quality of video that can be streamed.
&lt;a href=&quot;https://www.w3.org/TR/webrtc-nv-use-cases/&quot; rel=&quot;noopener&quot;&gt;WebRTC NV&lt;/a&gt; gathers the initiative to create
supplementary APIs to enable new use cases. These consist of extensions to existing APIs to give
more control over existing functionality such as &lt;a href=&quot;https://www.w3.org/TR/webrtc-svc/&quot; rel=&quot;noopener&quot;&gt;Scalable Video
Coding&lt;/a&gt; as well as APIs that give access to
&lt;a href=&quot;https://github.com/w3c/mediacapture-insertable-streams/blob/main/explainer.md&quot; rel=&quot;noopener&quot;&gt;lower-level components&lt;/a&gt;.
The latter gives more flexibility to web developers to innovate by integrating high-performance
custom WebAssembly components. With emerging 5G networks and demand for more interactive services,
we&#39;re expecting to see a continued increase of services building on top of WebRTC in the year to
come.&lt;/p&gt;
</content>
    <author>
      <name>Huib Kleinhout</name>
    </author>
  </entry>
</feed>
