Utilize an RTMP stream to process images with OpenCV, transmitting data via Socket.IO and serving images through Flask.
The main objective is read QR codes (or bar codes as well) to manage a warehouse inventory.
In this project we are using a simple nginx configured to receive messages via RTMP and transmitting via HLS.
rtmp {
server {
listen 1935;
application live {
live on;
record off;
hls on;
hls_path /hls/live;
hls_fragment 3;
}
}
}
TO DO.
TO DO.
TO DO.