Is there any way to record all videos in session, using local recorder?
1 Like
Local recorder uses this native Web API under the hood: https://developer.mozilla.org/en-US/docs/Web/API/MediaRecorder
There’s no way of recording all of the streams in the browser directly in a composed layout. You will have to record all of them separately and join them afterwards.
1 Like