-2

Hi guys me and my team already built a video conferencing application with MERN stack but we are left with one tiny little feature which is integrating recording features into it. Pls guys any idea on how we can implement the recording feature.

  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Oct 05 '22 at 19:20

1 Answers1

0

Check out this article: https://bloggeek.me/recording-webrtc-sessions/ It really depends on what you want to achieve, and how your video conferencing solution looks like (e.g. do you use cPaas)? Main options:

  1. Record from one of the clients (can also be a "recorder" client you create yourself). There are also some open-source projects that can help you with that, e.g. https://github.com/muaz-khan/RecordRTC
  2. Record streams on the server side
  • Me and my team are trying to record the entire webpage without making use of the screen sharing approach. – Daniel Vicent Oct 07 '22 at 14:59
  • Does your webpage include components besides WebRTC-based video elements? If so, then you should use `getDisplayMedia` (https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getDisplayMedia). RecordRTC wraps it for you. The remaining question is whether you can use one of the clients as the recorder or whether you need to create a fake client and use it as a recorder. – Itsik Beslon Oct 07 '22 at 19:22