kamlesh
kamlesh

Reputation: 821

saving a video/audio session created through webrtc peerConnection

I have created an application where I am able to start a video conference between two clients using webRTC peerConnection api.
I have used node.js for server side scripting and socket.io for socket implementation. Now I want to record this live video chat session and save it.
How to go about it? I tried to find out but haven't got anything. Maybe I am not looking at the right place. Please help.

Upvotes: 3

Views: 1934

Answers (1)

Sam Dutton
Sam Dutton

Reputation: 15269

This doesn't directly help you on Node.js, but you could use the C++ API on a server and record from that. There's a sample client app in the webrtc.org repository.

Upvotes: 1

Related Questions