Home
Softono
J

Jitsi

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
2

Software by Jitsi

Jitsi Meet
Open Source

Jitsi Meet

# <p align="center">Jitsi Meet</p> Jitsi Meet is a set of Open Source projects which empower users to use and deploy video conferencing platforms with state-of-the-art video quality and features. <hr /> <p align="center"> <img src="https://raw.githubusercontent.com/jitsi/jitsi-meet/master/readme-img1.png" width="900" /> </p> <hr /> Amongst others here are the main features Jitsi Meet offers: * Support for all current browsers * Mobile applications * Web and native SDKs for integration * HD audio and video * Content sharing * Raise hand and reactions * Chat with private conversations * Polls * Virtual backgrounds And many more! ## Using Jitsi Meet Using Jitsi Meet is straightforward, as it's browser based. Head over to [meet.jit.si](https://meet.jit.si) and give it a try. It's scalable and free to use. All you need is a Google, Facebook or GitHub account in order to start a meeting. All browsers are supported! Using mobile? No problem, you can either use your mobile web browser or our fully-featured mobile apps: | Android | Android (F-Droid) | iOS | |:-:|:-:|:-:| | [<img src="resources/img/google-play-badge.png" height="50">](https://play.google.com/store/apps/details?id=org.jitsi.meet) | [<img src="resources/img/f-droid-badge.png" height="50">](https://f-droid.org/packages/org.jitsi.meet/) | [<img src="resources/img/appstore-badge.png" height="50">](https://itunes.apple.com/us/app/jitsi-meet/id1165103905) | If you are feeling adventurous and want to get an early scoop of the features as they are being developed you can also sign up for our open beta testing here: * [Android](https://play.google.com/apps/testing/org.jitsi.meet) * [iOS](https://testflight.apple.com/join/isy6ja7S) ## Running your own instance If you'd like to run your own Jitsi Meet installation head over to the [handbook](https://jitsi.github.io/handbook/docs/devops-guide/) to get started. We provide Debian packages and a comprehensive Docker setup to make deployments as simple as possible. Advanced users also have the possibility of building all the components from source. You can check the latest releases [here](https://jitsi.github.io/handbook/docs/releases). ## Jitsi as a Service If you like the branding capabilities of running your own instance but you'd like to avoid dealing with the complexity of monitoring, scaling and updates, JaaS might be for you. [8x8 Jitsi as a Service (JaaS)](https://jaas.8x8.vc) is an enterprise-ready video meeting platform that allows developers, organizations and businesses to easily build and deploy video solutions. With Jitsi as a Service we now give you all the power of Jitsi running on our global platform so you can focus on building secure and branded video experiences. ## Documentation All the Jitsi Meet documentation is available in [the handbook](https://jitsi.github.io/handbook/). ## Security For a comprehensive description of all Jitsi Meet's security aspects, please check [this link](https://jitsi.org/security). For a detailed description of Jitsi Meet's End-to-End Encryption (E2EE) implementation, please check [this link](https://jitsi.org/e2ee-whitepaper/). For information on reporting security vulnerabilities in Jitsi Meet, see [SECURITY.md](./SECURITY.md). ## Contributing If you are looking to contribute to Jitsi Meet, first of all, thank you! Please see our [guidelines for contributing](CONTRIBUTING.md). <br /> <br /> <footer> <p align="center" style="font-size: smaller;"> Built with ❤️ by the Jitsi team at <a href="https://8x8.com" target="_blank">8x8</a> and our community. </p> </footer>

Video Conferencing
29.4K Github Stars
Jitsi Video Bridge
Open Source

Jitsi Video Bridge

# Intro Jitsi Videobridge is a WebRTC-compatible Selective Forwarding Unit (SFU), i.e. a multimedia router. It is one of the backend components in the [Jitsi Meet](https://github.com/jitsi/jitsi-meet) stack. You can find more documentation in the [doc/ directory in the source tree](https://github.com/jitsi/jitsi-videobridge/tree/master/doc) and in the [Jitsi Meet Handbook](https://jitsi.github.io/handbook/). If you have questions about the project, please post on the [Jitsi Community Forum](https://community.jitsi.org/). GitHub issues are only used to track actionable items. # Packages ## Debian/Ubuntu You can download binary packages for Debian/Ubuntu: * [stable](https://download.jitsi.org/stable/) ([instructions](https://jitsi.org/downloads/ubuntu-debian-installations-instructions/)) * [testing](https://download.jitsi.org/testing/) ([instructions](https://jitsi.org/downloads/ubuntu-debian-installations-instructions-for-testing/)) * [nightly](https://download.jitsi.org/unstable/) ([instructions](https://jitsi.org/downloads/ubuntu-debian-installations-instructions-nightly/)) ## Building your own package You can build a custom package with just `mvn install` in the root directory of the repo. Look for the package in `jvb/target/jitsi-videobridge-2.1-SNAPSHOT-archive.zip`. # Running locally You can run jitsi-videobridge locally with maven (or in your IDE). First create a `~/.jvb/jvb.conf` to configure the environment to connect to and other options (see [reference.conf](https://github.com/jitsi/jitsi-videobridge/blob/master/jvb/src/main/resources/reference.conf) for the available options). ```sh JVB_HOME="/path/to/the/cloned/repo" JVB_CONFIG_DIR_LOCATION="~/" JVB_CONFIG_DIR_NAME=".jvb" JVB_CONFIG_FILE="$JVB_CONFIG_DIR_LOCATION/$JVB_JVB_CONFIG_DIR_NAME/jvb.conf" mvn compile exec:exec -Dexec.executable=java -Dexec.args="-cp %classpath org.jitsi.videobridge.MainKt -Djava.library.path=$JVB_HOME/lib/native/linux-64 -Djava.util.logging.config.file=$JVB_HOME/lib/logging.properties -Dnet.java.sip.communicator.SC_HOME_DIR_LOCATION=$JVB_CONFIG_DIR_LOCATION -Dnet.java.sip.communicator.SC_HOME_DIR_NAME=$JVB_CONFIG_DIR_NAME -Dconfig.file=$JVB_CONFIG_FILE" ``` # Configuration Application level configuration comes from a config file, usually installed in `/etc/jitsi/videobridge/jvb.conf`. The values in that file override the defaults defined in [reference.conf](https://github.com/jitsi/ice4j/blob/master/src/main/resources/reference.conf). ## Debian On debian systems the `/etc/jitsi/videobridge/config` file can be used to set configuration for the Java virtual machine. Notable examples: ```commandline # Increase the java heap to 8GB VIDEOBRIDGE_MAX_MEMORY=8192m # Change the garbage collector (defaults to G1GC) VIDEOBRIDGE_GC_TYPE=G1GC ```

Video Conferencing
3.1K Github Stars