Improving compatibility using WebRTC adapter.js

While the WebRTC specification is relatively stable, not all browsers have fully implemented all of its features. In addition, some browsers still have prefixes on some or all WebRTC APIs. While you can manually code around these issues, there is an easier way. The WebRTC organization provides on GitHub the WebRTC adapter to work around compatibility issues in different browsers' WebRTC implementations. The adapter is a JavaScript shim which lets your code to be written to the specification so that it will "just work" in all browsers with WebRTC support. There's no need to conditionally use prefixed APIs or implement other workarounds.

Note: Since there is ongoing fluidity in functionality and naming of API terms in WebRTC and supporting browsers, use of this adapter is generally recommended.

The adapter is provided under a BSD-style license.

What adapter.js does

For each version of each browser that supports WebRTC, adapter.js implements the needed polyfills, establishes the non-prefixed names of APIs, and applies any other changes needed to make the browser run code written to the WebRTC specification.

For example, on Firefox versions older than 38, the adapter adds the RTCPeerConnection.urls property; Firefox doesn't natively support this property until Firefox 38, while on Chrome, support for the Promise based API is added if not yet available. These are just a couple of examples; there are of course other adjustments made for you by the shim.

The WebRTC adapter currently supports Firefox, Google Chrome, and Microsoft Edge.

Using adapter.js

In order to use adapter.js, you need to include adapter.js on any page that uses WebRTC APIs:

  1. Download a copy of the latest version of adapter.js from GitHub.
  2. Place it in your site's directory structure (such as in your scripts directory).
  3. Include adapter.js in your project: <script src="adapter.js"></script>
  4. Write your code, using WebRTC APIs per the specification, knowing that your code should work on all browsers.
  5. Keep in mind that even a good shim like this one doesn't mean you don't need to test your code on different browsers (and ideally different versions of each browser).

See also

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/webrtc_api/adapter.js

API Audio Guide Video WebRTC