Posts

Showing posts with the label Meet

How to create your own video conference application like Zoom ,Meet, teams ...

Image
  Jitsi Meet is an open source video conferencing solution which allows users to setup and share video conferences from a single web page with no apps or downloads necessary. In addition to video conferencing provides telephone dial-in, screen sharing, recording, white boarding, collaborative editing of documents, chat and support for 25 languages .  Installing Jitsi First add the Jitsi repository key onto your system by running from the command line: wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | sudo apt-key add - Next we’ll create a  sources.list.d  file with the Jitsi repository. We’re using  stable  but if you want to switch to the  unstable  branch simply swap  unstable  for  stable  and run: sudo sh -c "echo 'deb https://download.jitsi.org stable/' > /etc/apt/sources.list.d/jitsi-stable.list" Update your package list with the below: sudo apt-get -y update Now we install the Jitsi-Meet meta package itself...