A WebRTC meeting service using mediasoup.
Try it online at https://letsmeet.no. You can add /roomname to the URL for specifying a room.
- Audio/Video
- Chat
- Screen sharing
- File sharing
- Different layouts
There is also a SIP gateway that can be found here. To try it, call: roomname@letsmeet.no.
If you want the automatic approach, you can find a docker image here.
- Clone the project:
$ git clone https://github.com/havfo/multiparty-meeting.git
$ cd multiparty-meeting
- Copy
server/config/config.example.js
toserver/config/config.js
:
$ cp server/config/config.example.js server/config/config.js
- Copy
app/public/config/config.example.js
toapp/public/config/config.js
:
$ cp app/public/config/config.example.js app/public/config/config.js
-
Edit your two
config.js
with appropriate settings (listening IP/port, logging options, valid TLS certificate, etc). -
Set up the browser app:
$ cd app
$ npm install
$ npm run build
This will build the client application and copy everythink to server/public
from where the server can host client code to browser requests.
- Set up the server:
$ cd ..
$ cd server
$ npm install
- Run the Node.js server application in a terminal:
$ cd server
$ npm start
- test your service in a webRTC enabled browser:
https://yourDomainOrIPAdress:3443/roomname
- Stop your locally running server. Copy systemd-service file
multiparty-meeting.service
to/etc/systemd/system/
and check location path settings:
$ cp multiparty-meeting.service /etc/systemd/system/
$ edit /etc/systemd/system/multiparty-meeting.service
- reload systemd configuration and start service:
$ systemctl daemon-reload
$ systemctl start multiparty-meeting
- if you want to start multiparty-meeting at boot time:
$ systemctl enable multiparty-meeting
- 3443/tcp (default https webserver and signaling - adjustable in
server/config.js
) - 4443/tcp (default
npm start
port for developing with live browser reload, not needed in production enviroments - adjustable in app/package.json) - 40000-49999/udp/tcp (media ports - adjustable in
server/config.js
)
- You need an addtional TURN-server for clients located behind restrictive firewalls! Add your server and credentials to
app/config.js
- Håvar Aambø Fosstveit
- Stefan Otto
- Mészáros Mihály
This started as a fork of the work done by:
MIT