Jitsi Meet: Open source video conferencing platform
WebRTC video conferencing with self-hosting and embeddable SDKs.
Learn more about Jitsi Meet
Jitsi Meet is a video conferencing platform built on WebRTC technology that provides both hosted and self-hosted deployment options. The architecture includes a web application, mobile clients for Android and iOS, and server components that can be deployed via Debian packages or Docker. It uses an SFU (Selective Forwarding Unit) approach for media routing and supports end-to-end encryption for participant communications. Common deployment scenarios include public instances, private enterprise installations, and embedded conferencing features within third-party applications.
Self-Hosted Infrastructure Options
Deploy via Debian packages or Docker with complete control over servers and data. Organizations run independent instances without reliance on third-party hosted services, enabling custom configurations and compliance requirements.
Multi-Platform Client Support
Browser-based conferencing works without plugins across current web browsers. Native Android and iOS apps plus embeddable SDKs enable integration into existing applications with consistent feature parity.
End-to-End Encryption Implementation
E2EE secures participant communications with documented technical specifications and key management. Security architecture and vulnerability reporting procedures are formally maintained in project documentation for audit and compliance verification.
const domain = 'meet.jit.si';
const options = {
roomName: 'MyTeamMeeting',
width: 700,
height: 700,
parentNode: document.querySelector('#meet')
};
const api = new JitsiMeetExternalAPI(domain, options);
api.addEventListener('videoConferenceJoined', () => {
console.log('User joined the conference');
});Top in Networking
Related Repositories
Discover similar tools and frameworks used by developers
cURL
Command-line tool and C library for URL-based data transfer supporting 25+ protocols.
Zapret
Windows zapret implementation for bypassing Discord and YouTube restrictions via DPI circumvention.
Gluetun
Lightweight Go VPN client for routing containerized traffic.
ProxyChains
Force TCP connections through chained SOCKS/HTTP proxies via LD_PRELOAD.
ws
WebSocket client and server for Node.js with RFC 6455 support and compression.