Not sure if we have something implemented to record and send calls to graph, but I was doing some research about how to record calls in Live Kit server.
We need to start recording calls and notify call participants when record starts and ends.
Some LiveKit documentation about recording:
https://github.com/livekit/livekit-recorder?tab=readme-ov-file
https://github.com/livekit/egress
Also when recording starts or ends we should notify room participants this way:
room.sendData({
kind: 'RELIABLE', // or 'LOSSY' for less critical messages
message: JSON.stringify({
type: 'recording_status',
status: 'started'
}),
});
Then the apps will implement a listener and show a message or something notifying the participants
I'm not sure about how and who will start the recording or if it will be automatic. As we don't have a room admin I don't think someone could start it, so maybe it should be automatic?
Not sure if we have something implemented to record and send calls to graph, but I was doing some research about how to record calls in Live Kit server.
We need to start recording calls and notify call participants when record starts and ends.
Some LiveKit documentation about recording:
https://github.com/livekit/livekit-recorder?tab=readme-ov-file
https://github.com/livekit/egress
Also when recording starts or ends we should notify room participants this way:
Then the apps will implement a listener and show a message or something notifying the participants
I'm not sure about how and who will start the recording or if it will be automatic. As we don't have a room admin I don't think someone could start it, so maybe it should be automatic?