A containerized python application that uses the Groundlight SDK to process frames from a video stream. This can connect to a web cam over RTSP, a local video file, or a youtube URL.
Releases created in Github will automatically get built and pushed to dockerhub. These are multi-architecture builds including x86 and ARM.
To build locally:
docker build -t stream:local .
alternatively, run:
make build
Now you can run it
docker run stream:local -h
To run the tests, you can run:
make install-dev
make test