MENU

Fun & Interesting

WebRTC: mediasoup (SFU) N - N hands on - Part 4

Amir Eshaq 14,751 4 years ago
Video Not Working? Fix It Now

We will pick up from the previous video and make changes to implement a many to many video conference. source code: https://github.com/jamalag/mediasoup3 The logic in this episode changes completely from the previous one to one tutorial. ** Note ** 1. make sure listenIps is configured correctly: - if you are following the video using a docker container, then listenIps: [ { ip: '0.0.0.0', announcedIp: '[COMPUTER_IP_ADDRESS]', // replace with relevant IP address } ] - if you are running directly from a computer, then... listenIps: [ { ip: '[COMPUTER_IP_ADDRESS]', // replace with relevant IP address } ] In the next video we add features to include for: One - N (Presenter and doesn't consume other media, 1 producer, N consumers) Few - N (Host, Teacher: all participants are producers, Host consumes all, the rest only consume the Host)

Comment