I am just a beginner when it comes to web dev, but my situation is: I have a <video>
element
on my page that is streaming video via WebRTC. I would like to display a local bitmap ( a cursor)
at an arbitrary position, overlayed on top of that element.
I am using this sample as a base for this experiment. So, the video on the rhs of the page is receiving a stream. I would like to display a local cursor on that element.
I have looked at a few overlay examples, but I haven't seen a way of dynamically updating an overlay.
Any advice or tips would be greatly appreciated.
Edit: the cursor would be a bitmap sent from a remote system via WebRTC data channel, representing a remote users cursor, and I would like to display it locally on the local browser.