Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 727 Bytes

DEVELOPING.md

File metadata and controls

39 lines (25 loc) · 727 Bytes

Groundlight Stream Processor

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

Releases created in Github will automatically get built and pushed to dockerhub. These are multi-architecture builds including x86 and ARM.

Build locally

To build locally:

docker build -t stream:local .

alternatively, run:

make build

Run locally after building

Now you can run it

docker run stream:local -h

Testing

To run the tests, you can run:

make install-dev
make test