Giter VIP home page Giter VIP logo

adapterjs's Introduction

#AdapterJS

Creating a common API for WebRTC in the browser

Find the most recent version hosted on our CDN.

  • Minified version: //cdn.temasys.com.sg/adapterjs/0.12.x/adapter.min.js
  • Debug version //cdn.temasys.com.sg/adapterjs/0.12.x/adapter.debug.js
  • Minified version (with screensharing changes): //cdn.temasys.com.sg/adapterjs/0.12.x/adapter.screenshare.min.js
  • Debug version (with screensharing changes)//cdn.temasys.com.sg/adapterjs/0.12.x/adapter.screenshare.js

Part of the Skylink WebRTC toolkit.

Compatibility

AdapterJS provides polyfills and cross-browser helpers for WebRTC. It wraps around the native APIs in Chrome, Opera and Firefox and provides support for WebRTC in Internet Explorer and Safari on Mac and Windows through the available Temasys Browser Plugins.

Plugin Install Bar in IE and Safari

In versions of IE and Safari that don't support WebRTC natively, AdapterJS will suggest to the user to install the Temasys WebRTC plugin for Mac or Windows when you try to access getUserMedia or RTCPeerConnection.

Functionality

Polyfills

RTCPeerConnection, RTCIceCandidate, RTCSessionDescription, MediaStreamTrack, navigator.getUserMedia

Using AdapterJS

Working with AdapterJS

We strongly recommend only executing any WebRTC related code in the callback of the AdapterJS.webRTCReady function. It is triggered whenever the browser or our Temasys WebRTC plugin is ready to be used.

AdapterJS.webRTCReady(function(isUsingPlugin) {
    // The WebRTC API is ready.
    //isUsingPlugin: true is the WebRTC plugin is being used, false otherwise
    getUserMedia(constraints, successCb, failCb);
});

Note that AdapterJS.onwebrtcready is now deprecated.

Find more information about how to optimize your application for the Temasys WebRTC Plugin in the Temasys WebRTC Plugin Documentation.

Helper functions

attachMediaStream(element, stream)

taken over for compatibility with the original adapter.js from Google. Feeds a MediaStream object into video and audio tags. Calling attachMediaStream(element, null) will detach any existing stream from the element. The stream will still be running and available to be attached to any rendering element.

reattachMediaStream(elementFrom, elementTo)

taken over for compatibility with adapter.js from Google. Feeds a MediaStream from one video or audio tag into another.

createIceServer(url, username, password)

creates a valid iceServer from one url, username and password

expected parameters:

  • url: The iceServer url.
  • username: The username.
  • password: The credential password.

expected return values:

  • iceServer: The iceServer object.
    • url: The iceServer url.
    • username: The username.
    • credential: The credetial password.
createIceServers(urls, username, password)

creates a valid iceServers array for the specific browser and version.

expected parameters:

  • urls: The array of iceServer urls.
  • username: The username.
  • password: The credential password.

expected return values:

  • iceServerList: The array of iceServer objects.
    • iceServer: The iceServer object.
      • url: The iceServer url.
      • username: The username.
      • credential: The credential password.
checkIceConnectionState(peerId, iceConnectionState, callback)

handles all the iceConnectionState return value differences cross-browsers when oniceconnectionstate is fired.

  • Expected outcome should be: checking > connected > completed.

  • What was received in Chrome/Opera as offerer: checking > completed > completed.

  • What was received in Chrome/Opera as answerer: checking > connected.

  • What was received in Firefox as offerer: checking > connected.

  • What was received in Firefox as answerer: checking > connected.

expected parameters:

  • peerId: The unique identifier for the peer to store all fired states tied specifically to this peer.
  • iceConnectionState: The iceConnectionState received.
  • callback: The callback fired once the parsing is completed.

expected return values:

  • updatedIceConnectionState: The iceConnectionState that user should be expecting.
peerConnection.oniceconnectionstatechange = function () {
  checkICEConnectionState(peerId, peerConnection.iceConnectionState, function (updatedIceConnectionState) {
    // do Something every time there's a new state ['checking', 'connected', 'completed']
  });
};
checkMediaDataChannelSettings(peerAgentBrowser, peerAgentVersion, callback, constraints)

handles all MediaStream and DataChannel differences for interopability cross-browsers. method has to be called before creating the offer to check if peer should create the offer.

  • For some older (20+) versions of Firefox and Chrome MediaStream interopability, MozDontOfferDataChannel has to be used, and hence Firefox cannot establish a DataChannel connection as an offerer, and results in no DataChannel connection.
  • To achieve both MediaStream and DataChannel connection interopability, Chrome or other browsers has to be the one creating the offer.

expected parameters:

  • peerAgentBrowser: The browser agent or name. E.g. Chrome.
  • peerAgentVersion: The browser agent version. E.g. 35.
  • callback: The callback fired after the check has been made.
  • constraints: The offer constraints.

expected return values:

  • beOfferrer: Returns a true or a false. If true, user should do the offer. If false, inform the other peer to do the offer.
  • unifiedConstraints: The updated constraints for interoperability.
// Right now we are not yet doing the offer. We are just checking if we should be the offerer instead of the other peer
checkMediaDataChannelSettings(peerAgentBrowser, peerAgentVersion
  function (beOfferer, unifiedOfferConstraints) {
  if (beOfferer) {
    peerConnection.createOffer(function (offer) {
      // success
    }, function (error) {
      // failure
    }, unifiedOfferConstraints);
  } else {
    // let the other peer do the offer instead.
  }
}, inputConstraints);

Helper variables

webrtcDetectedType

displays the browser webrtc implementation type.

expected values:

  • null: Not implemented with webrtc.
  • webkit: Webkit implementation of webrtc.
  • moz: Mozilla implementation of webrtc.
  • plugin: Temasys plugin implementation of webrtc.
webrtcDetectedDCSupport

displays the browser webrtc datachannel support type.

expected values:

  • null: No datachannel support.
  • SCTP: SCTP enabled datachannel.
  • RTP: RTP enabled datachannel.

Using screensharing functionality

AdapterJS 0.12.0+ offers cross-browser screensharing in Chrome 34+, Firefox 33+ and with a licensed copy of our Temasys WebRTC Plugin in IE9+ and Safari 7.1+. (For plugin licensing interest please contact sales (a) temasys.com.sg)

To use the screensharing functionality, reference publish/adapter.screenshare.js and add the mediaSource: 'window' setting to the video media constraints. Requires HTTPS!

Example:

window.navigator.getUserMedia({
  video: {
    mediaSource: 'window' || 'screen'
  }
}, function (stream) {
  console.log('Received stream', stream);
}, function (error) {
  console.log('Failed getting stream', error);
});

Setup this project

  • Install or update to at lest version 0.10.26 of node and version 1.4.6 of npm
  • Install grunt-cli (See: http://gruntjs.com/getting-started)
  • Run npm install to install dev dependencies.
  • Run npm install -g browserify and npm install -g testling (might require sudo) to install the necessary tools to test locally

Development

  • Run grunt jshint to run jshint on its own.
  • Run grunt publish to create production debug and minified copies of adapter.js in publish folder

Folders

publish

The debug version of the library and a minified copy of it

source

The adapter.js library development file

tests

run grunt test to generate the published versions of adapter.js (same as grunt publish) and run the automated test suite on it. You can configure the browser to test in Gruntfile.js (see the karma target). You can also run grunt karma to run the test and bypass the publish step.

(Mac only) If you are testing the Temasys WebRTC Plugin, you can run osascript tests/mac.watcher.scpt to automatically validate the permission popup.

License

APACHE 2.0 - http://www.apache.org/licenses/LICENSE-2.0.html

adapterjs's People

Contributors

artmatsak avatar johache avatar memoryonrepeat avatar ncurrier avatar sebbeaume avatar serrynaimo avatar ulifigueroa avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.