xmpp-ftw-jingle

Jingle (XEP-0084) plugin for XMPP-FTW

Usage no npm install needed!

<script type="module">
  import xmppFtwJingle from 'https://cdn.skypack.dev/xmpp-ftw-jingle';
</script>

README

xmpp-ftw-jingle

A Jingle (XEP-0166) plugin for XMPP-FTW.

https://github.com/xmpp-ftw/xmpp-ftw.git

More....

See the XMPP-FTW demo repository - https://github.com/xmpp-ftw/xmpp-ftw-demo

Client usage

See https://github.com/legastero/jingle.js

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) {
     socket.emit('xmpp.jingle.connection', 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()
})

Build status

Build Status Dependency Status Coverage Status

Install

npm i --save xmpp-ftw-jingle

Test

npm test