Jitsi Meet

Jitsi Meet

Jitsi Meet is an open source WebRTC application. It is an easy way to get started with building a scalable WebRTC-based communication service. To provide high quality, Jitsi Meet uses the Jitsi Videobridge, a Selective Forwarding Unit (SFU) designed to run thousands of video streams from a single server.

You can download Jitsi Meet at jitsi.org.

Integration steps

If you are installing Jitsi Meet using the Debian package (e.g., apt-get), the config file needs to be updated to enable callstats.io.

$ sudo apt-get update
$ sudo apt-get -y install jitsi-meet
$ vi /etc/jitsi/meet/hostname-config.js

In the config file uncomment the lines related to callstats.io.

// To enable sending statistics to callstats.io you should provide Application ID and Secret.

callStatsID: "", //Application ID for callstats.io API
callStatsSecret: "" //Secret for callstats.io API

To build from Jitsi Meet from source, the instructions are detailed in the README.md file and the same lines related to callstats.io in config.js need to be updated.