Share moving object in django video call using webRTC

I create a multi peer video chat using Django and WebRTC. I'm able to share the entire screen but I want to share only some object on the partecipants' screens. I have a separate python script made with pygame that create a GUI in which there are moving objects (in my case is simply a ball moving from left to right at different speed). What do you suggest me to share only the pygame moving objects on the participants screens instead of the entire screen? Thank you

Back to Top