Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jitsi Meet Installation on Windows

Tags:

jitsi

I have been checking out Jitsi Meet platform. It seems promising to be used in my project. I am unable to install Jitsi Meet on Windows server. There is no proper documentation available for installation on Windows platform.

Please share the steps/video to install and host Jitsi Meet on windows server.

like image 577
Archer Avatar asked Aug 26 '16 15:08

Archer


People also ask

Is Jitsi Meet available for Windows?

You can download Jitsi Desktop and use it regardless of your OS. Simply download our Windows, Mac OS X, or Linux packages. With a little bit of extra bravery you can also easily build and run it on FreeBSD. Secure audio and video calls.

Do I need to download Jitsi?

Enter Jitsi Meet. Much like Zoom, the free and open-source video-chat tool is easy to use and requires little-to-no onboarding. It's also encrypted, and doesn't sell your data. As an added bonus, you don't need an account and you don't need to download anything to start or join a meeting.


2 Answers

I am late to answer, but I want to share some info with other people trying to run jitsi-meet on Windows. You can't use Prosody, so we will switch to Openfire. You can than go the embarrassingly simple way (install Openfire Meetings plugin through Openfire administration and you have jitsi-meet running), or the adventurous and not-that-simple way (built from sources):

  1. Install Openfire, most values stay default or are based on your configuration.

  2. Enable http-bind.

  3. Install Jitsi Focus Conference plugin (Jifoco)

  4. To build the libs, you will need NodeJS and Python27 installed (I will assume you know how to use NodeJS). Clone the repository, install the dependencies and make some minor changes to webpack.config.js to actually build the sources on windows. I didn't manage to get them through PR, but I think I covered all of the changes in this Issue: https://github.com/jitsi/jitsi-meet/issues/1975

  5. Change the config.js to point to your Openfire installation (I cheated here a bit and installed the OFMeet plugin to Openfire, opened the Jitsi-Meet window and copied config.js contents through Developer Tools - set up to connect to openfire)

  6. Replace the virtual script includes to normal html includes and point them to your libs

  7. You can use the libs to start jitsi-meet as you please. For example: I just created an empty Asp.Net MVC web application, changed the MVC router, added index.html and libs and it worked. (I remember having some problems, but they were tied more to MVC than to jitsi-meet)

I hope I didn't forget something. If you need anything specific, feel free to contact me.

like image 181
Josef Jura Avatar answered Jan 01 '23 08:01

Josef Jura


I'm one of the Jitsi developers and we have never tested this on Windows AFAICT, so I'm afraid you are on your own.

Some of the components of our projects require compiled libraries which we only provideo for Linux and macOS, so a nontrivial amount of work would be needed to address that.

like image 26
saghul Avatar answered Jan 01 '23 08:01

saghul