Live Video Streaming is done with flask-socketio with production WSGI server
Video Streaming is done with flask-socketio with production WSGI server
In order to use eventlet or gevent for making asynchronous call instead of uWSGI download the dependency using pip3 and in the test.py file change
socketio.emit('image',json, broadcast=True)
A video is attached in the repository with the name videostreaming.mkv play the video to see the demonstration of the project.
In order to send video frames from single server to client see the server.py and client.py. Currently this code can only display video frames from two clients but with some modification in javascript code it will be possible to do for many clients, will make the required changes in some time. See the demo videos of remote_server_client1 and remote_server_client2 for the output demonstration. In remote_server_client2, first client is on a remote system and second client and server is on the same system in the network. In remote-server_client1 the server and client are both on different systems in the same network.