Peer-to-peer group video chat using WebRTC, Python, and Javascript. https://camus.chat
4.6K
Camus is a group video chat app that uses WebRTC for direct peer-to-peer communication. Users can create and join rooms, stream audio and video with a microphone and webcam, share their screen, and send text messages. You can try a demo at https://camus.chat, or run your own server using Snap, pip, Docker, or Heroku.

Make sure you have snapd installed. Install Camus:
$ sudo snap install camus
Once installed, Camus runs automatically as a Snap service. See the Snap service management documentation for details on starting and stopping services.
Go to localhost:5000 in your browser. For local testing, you can visit
the same room in multiple tabs and each tab will act as a separate
client.
Camus requires Python 3.7 or higher since it makes use of Quart and async syntax. As usual, it's best to use a virtual environment.
Install Camus:
$ pip install camus-chat
Run Camus:
$ camus
Go to localhost:5000 in your browser. For local testing, you can visit
the same room in multiple tabs and each tab will act as a separate
client.
You can find a pre-built Docker image on Docker Hub. Use the following command to pull the image and run a container:
$ docker pull camuschat/camus
$ docker run -d -p 5000:5000 camuschat/camus
Go to localhost:5000 in your browser. For local testing, you can visit
the same room in multiple tabs and each tab will act as a separate
client.
Simply click the button above or see the deployment documentation for detailed instructions.
See the official documentation at https://docs.camus.chat for more information about configuring and running Camus.
If you want to make a contribution, please read the Contributing guidelines first.
Content type
Image
Digest
Size
46.6 MB
Last updated
over 5 years ago
docker pull camuschat/camus