I have some understanding of WebRTC. I know it is mainly used in communication of two peers, but I somehow want my python server to receive it's stream and do some mathematical calculations on each frame, and send back the stream to the user.
I have OpenCV model and it works with openCV videoCapture technology, but I wont to integrate it with webRTC and send results back to the user from python server.
My question is, how can i make WebRTC work with python properly. I found out about aiortc, it's a python implementation for webRTC peer, but it has some problems with several user connections and I need to something else.
Is there any other way to integrate openCV model with WebRTC stream?