JSPM

  • Created
  • Published
  • Downloads 1023
  • Score
    100M100P100Q127105F
  • License MIT

Generic Jingle via WebRTC session manager.

Package Exports

  • jingle

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (jingle) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Jingle WebRTC

Example

var conn = new RealtimeConnection(); // stanza.io, xmpp-ftw, strophe, etc
var jingle = new JingleWebRTC();
var attachMediaStream = require('attachmediastream');

jingle.on('localStream', function (stream) {
    attachMediaStream(stream, document.getElementById('localVideo'), {
        mirror: true,
        muted: true
    });
});

jingle.on('send', function (data) {
     conn.send(data);
});

jingle.on('peerStreamAdded', function (session) {
     attachMediaStream(session.stream, document.getElementById('remoteVideo'));
});

// Answering a call request.
jingle.on('incoming', function (session) {
     session.accept(); // Or display an incoming call banner, etc
});

// Starting an A/V session.
jingle.startLocalMedia(null, function () {
    var sess = jingle.createMediaSession('peer@example.com/resouce');
    sess.start();
});