xmpp-ftw-jingle
v1.2.0
Published
Jingle (XEP-0084) plugin for XMPP-FTW
Downloads
11
Maintainers
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('[email protected]/resouce')
sess.start()
})
Build status
Install
npm i --save xmpp-ftw-jingle
Test
npm test