Awesome
🚀 Try videocall.rs Today!
Experience seamless, real-time video communication with videocall.rs, a cutting-edge platform built for developers by developers. Whether you're building the next big thing in robotics or just need reliable video calls, videocall.rs has got you covered.
🔗 Try It Now and bring your ideas to life with crystal-clear video and audio. Perfect for remote collaboration, demos, and beyond!
👨💻 Why videocall.rs?
- Built with Rust for performance and safety.
- Low latency, high-quality streaming.
- Easy integration with your projects.
▶️ YouTube Videos
Here's how we scaled it to support 1000 user per call https://youtu.be/LWwOSZJwEJI
The initial POC from 2022 https://www.youtube.com/watch?v=kZ9isFw1TQ8
video-call.rs
MVP of a teleconferencing system written in rust, both the backend and the UI.
How to try it out?
Setup
Technically you could run this with a single computer, but it is more fun if you use 2+.
Steps
-
Start the servers on the computer that you intend to use as the server using
ACTIX_UI_BACKEND_URL=ws://<server-ip>:8080 make up
(requires docker). -
Enable WebTransport Developer Mode:
- Go to
chrome://flags/#enable-webtransport-dev-mode
- Enable the flag
- Close chrome
- Go to
-
Open chrome using the
launch_chrome.sh
script, this will allow you to use webtransport locally. -
If your server computer is behind a firewall, make sure that TCP ports 80 and 8080 are open
-
Connect all computers to
http://<server-ip>/meeting/<username>/<meeting-id>
-
Make sure that you "allow" access to your mic and camera:
<img width="1840" alt="Screen Shot 2022-10-24 at 8 23 50 AM" src="https://user-images.githubusercontent.com/1176339/197536159-61f0d9c8-c8fa-454c-8f40-404ed52dca98.png"> -
Click connect on both browsers, and enjoy:
▶️ YouTube Channel
https://www.youtube.com/@securityunion
👉 Join our Discord Community
You can join our Discord Community, here is the invite link.
🫵 We need your haaalp!
We take pride on being community driven, there are many ways to collaborate, from filing an issue or, if you want to dive deeper, being part of our RFC Process
👨💻 Project Structure
Contains 3 sub-projects
- actix-api: actix web server
- yew-ui: Yew frontend
- types: json serializable structures used to communicate the frontend and backend.
Local Development
Dockerized workflow
- Install docker https://docs.docker.com/engine/install/
- Run one of the supported make commands
make test
make up
make down
make build
Without docker
Prerequisites
-
Create a postgresql database that you can accessed without a password. The default database name is
actix-api-db
, i.e. the default connection string ispostgresql://$USER@localhost/actix-api-db
-
Install [trurl](see https://github.com/curl/trurl) and [nats-server]((see https://docs.nats.io/running-a-nats-service/introduction/installation)
Starting up the servers
-
Run the script
./start_dev.sh
.It examines various environment variables to control the behavior; see the script itself for details. By default it runs using websockets rather than webtransport (
WEBTRANSPORT_ENABLED=0
) and without encryption (E2EE_ENABLED=0
). -
Connect your browser to
http://localhost:8081/meeting/<username>/<meeting-id>
You can make multiple connections (with varying usernames) from multiple browser windows or tabs.
If you are using encryption (
E2EE_ENABLED=1
), you should lanuch Chrome with the necessary options for it to accept the local certificate by running./launch_chrome.sh
👤 Contributors ✨
<table> <tr> <td align="center"><a href="https://github.com/darioalessandro"><img src="https://avatars0.githubusercontent.com/u/1176339?s=400&v=4" width="100" alt=""/><br /><sub><b>Dario</b></sub></a></td> <td align="center"><a href="https://github.com/griffobeid"><img src="https://avatars1.githubusercontent.com/u/12220672?s=400&u=639c5cafe1c504ee9c68ad3a5e09d1b2c186462c&v=4" width="100" alt=""/><br /><sub><b>Griffin Obeid</b></sub></a></td> <td align="center"><a href="https://github.com/ronen"><img src="https://avatars.githubusercontent.com/u/125620?v=4" width="100" alt=""/><br /><sub><b>Leone</b></sub></a></td> <td align="center"><a href="https://github.com/leon3s"><img src="https://avatars.githubusercontent.com/u/7750950?v=4" width="100" alt=""/><br /><sub><b>Leone</b></sub></a></td> <td align="center"><a href="https://github.com/JasterV"><img src="https://avatars3.githubusercontent.com/u/49537445?v=4" width="100" alt=""/><br /><sub><b>Victor Martínez</b></sub></a></td> </tr> </table>The Actix websocket implementation contains fragments from https://github.com/JasterV/chat-rooms-actix in particular the usage of an actor to orchestrate all sessions and rooms.
Show your support
Give a ⭐️ if this project helped you!