Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to record WebRTC video/audio session on server side?

I am creating a web app using WebRTC where I need to record and save every session on server so that other user can access later. I do not want to record on client side for which solution is available. What is the best way to do that. Is there any solution already out there.

like image 520
Free Slave Avatar asked Sep 13 '15 07:09

Free Slave


1 Answers

You should be using a WebRTC media server for that. Kurento Media Server is one of the possibilities you have. There are several examples on Kurento GitHub repositories for recording server side. Probably the most simple one is the recording with generators one.

like image 128
lulop Avatar answered Oct 22 '22 07:10

lulop