Video capture app on top of a websocket client that dialogs with a node.js server.
Python > 3.8
# create a virtualenv
python -m venv env
# activate virtualenv
source env/bin/activate
# install dependencies
pip install -r requirements.txt
The node.js server should be up and running.
Configure its IP address (server_ip
) in chaussette.py
:
server_ip = "192.168.2.101"
Launch programm.
# set executable
chmod +x main.py
# run
./main.py