Skip to content

WebRTC plugin for Internet Explorer and Safari

License

BSD-3-Clause, GPL-3.0 licenses found

Licenses found

BSD-3-Clause
LICENSE-BSD
GPL-3.0
LICENSE-GPL3
Notifications You must be signed in to change notification settings

faze/webrtc-everywhere

 
 

webrtc-everywhere is an open source project (with business-friendly license) to add support for WebRTC features to Safari (Windows and MAC OSX) and Internet Explorer (Windows).

Downloads

Online samples

The following samples use our adapter.js and could be tested on Safari and Internet Explorer (off course they also work on Firefox and Chrome):

Using our plugin in your own project

  • Download and install the plugin for MAC OSX or Windows
  • Include adapter.js in your code.
  • Change the code you're using to attach a stream to a <audio/> or <video /> HTML5 element:
    from:
document.getElementById("eltId").src = mediaStream;


to:

attachMediaStream(document.getElementById("eltId"), mediaStream);

Building source code

To build the source code you'll need Visual Studio 2013 (Windows) or Xcode (MAC OSX). ... to be continued

Release notes

Release notes

Release notes

  • 1.2.1
  • Fix Issue #15
  • Adds support for x64 (Windows)
  • Change Windows setup:
  • to register the ActiveX under HKCU instead of HKLM
  • to install binaries under AppData folder instead of ProgramFiles
  • to bundle 32bit and 64bit binaries

It's highly recommended to uninstall any old version before installing this one

  • 1.2.0

    • Adds DataChannel API with support for Strings, BLOBs and ArrayBuffers (Int8Array, Uint8Array, Uint8ClampedArray, Int16Array, Uint16Array, Int32Array, Uint32Array, Float32Array and Float64Array).
    • Adds support for DTMFSender API.
    • Implements secure prompt in getUserMedia. Websites served over htpps are stored in local file encrypted using DES-CBC. The encryption keys are defined at build time.
    • Bug fix: Issue #3, Issue #10 and Issue #11
  • 1.1.0

    • Add new JavaScript function: Webrtc::getScreenShot(). This function converts the RGB32 raw image to bitmap then to base64. The process is instantaneous and the base64 image could be used in JavaScript like this:
  var image = new Image();
  image.onload = function () {
  	document.getElementById("mycanvas").getContext("2d").drawImage(image, 0, 0, width, height);
  };
  image.src = "data:image/png;base64," + base64;
  • Bug fix:
    • Issue #6: The active element tag flashes when the window is resized or scrolled
    • Issue #7: drawImage() function is toooo slooow
    • Issue #8: Color alignment issue in drawImage()
  • 1.0.1
    • Initial release without support for DataChannel

License

  • Binaries and installers: All binaries and installers from us are released under BSD terms to allow using the project in your commercial products.
  • The source code: GPLv3. Please contact us for alternative license options.

Known issues

  • On Safari/OSX, if you're getting TypeError: undefined is not a function (evaluating 'getPlugin()...:

Getting help

The best way to get help is via our dev-group.

About

WebRTC plugin for Internet Explorer and Safari

Resources

License

BSD-3-Clause, GPL-3.0 licenses found

Licenses found

BSD-3-Clause
LICENSE-BSD
GPL-3.0
LICENSE-GPL3

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 84.2%
  • C 15.3%
  • Other 0.5%