Lets Talk
A chatting application using Pion webRTC and gorilla websocket for text, video, voice and file transfer. Test server
Preface
Lets Talk is a web chatting platform proposal for students. Due to the covid-19 pandemic, neccesity of having an online chatting/learning platform between students and lecturers is vivid.
Lets Talk supports multi-room chats between users, resumable file transfer (over websocket), video and voice calls support with desktop sharing. The idea is to allow minimal bandwidth consumption during video calls using one video - multiple audio during call session.
Administrator can only register user tentative
v0.1.0 Milestone
-
Multiple room support for users using gorilla websocket
-
Mobile UI
-
Desktop UI
-
Seamless websocket connection
-
Resumable file transfer
-
Seamless Desktop screen sharing support
-
Voice and Video call support
-
Low bandwidth consumption using selective video call transfer #31
-
Video session upload to cloud platforms or Database.
-
Admin portal
Dependencies
Backend
See go.mod for more information
Frontend
Installation
Clone repository
git clone https://github.com/metaclips/LetsTalk.git
Backend
go mod download
go run .
Frontend
npm install
npm run serve
Docker Installation
There are individual docker files for API and Frontend, there's also a docker compose file.
docker-compose up
Configuration
Do check config for supported configurations.
To generate TLS certificate for test using tls.
openssl req -nodes -x509 -newkey rsa:4096 -keyout key.pem -subj "/C=US/ST=Oregon/L=Portland/O=Company Name/OU=Org/CN=example.com" -out cert.pem -days 365
-
The default ICE server in use if none is specified in config is: stun:stun.l.google.com:19302
-
If no TLS key and cert path is specified, HTTP is used.
-
If Class session record is enabled, call sessions are recorded and uploaded to Dropbox server if a dropbox token is provided or file database.
License
Apache 2.0