Hello,
I am working with insecure angular, as per my requirement i used only Audio. I have some questions and queries for that. Please check below things and help me to how to integrate in angular project.
Recording Events:
1. recordingStarted
2.recordingStoped
How to use above methonds when recording started with REST API recordings/start. My question is when create first session, and join some participants, then publisher click on record api how to know others record started, for that above methods useful.
Stream Events:
Session Events:
How to use above methods as per our requirements.
1. Network disconnection and reconnection
2. session closed by publisher
Actually my existing code like this when start or stop function in click event. but it will not work, Event no enter to console log.
this.session.on("recordingStarted", (event: RecordingEvent) => {
console.log("recordingStarted")
});
this.session.on("recordingStoped", (event: RecordingEvent) => {
console.log("recordingStoped")
});
Very helpful to if anyone provide with some sample angular code or git project.