Hello,
I am implementing a conference app where video, audio, and screencasting of a browser tab will be transferred.
The video and the audio will be transferred using openvidu. However, the screencasting will not use openvidu (since webRTC doesn’t support screencasting on mobile devices yet, and it is required in my app).
I will implement screencasting by using mutation observer(listening to the changes of the DOM).
but the problem is transferring DOM changes is much faster than transferring media data. Therefore, there will be a lag between those data. What I need is a timestamp for the video frames so I can sync with the screen data.
Is there any way to access timestamps in openvidu ?