2025-10-21 18:03:49 -04:00
|
|
|
# go-bsb-cams
|
2025-10-21 16:01:28 -04:00
|
|
|
Simple program to take and output the Bigscreen Beyond 2e cameras to a webserver to be used with eyetracking software.
|
2025-10-16 17:08:51 -04:00
|
|
|
|
|
|
|
|
## Usage
|
2025-10-22 12:16:34 -04:00
|
|
|
Pre-Compiled Binares are in the Releases Section, and can be run out of the box with `./go-bsb-cams`
|
|
|
|
|
|
|
|
|
|
The code by default outputs to `localhost:8080/stream` but can be configured with the `-port` flag.
|
|
|
|
|
|
|
|
|
|
To run or build the src with golang:
|
|
|
|
|
|
2025-10-16 17:08:51 -04:00
|
|
|
Clone This repo and get the dependencies with: `go get .`
|
|
|
|
|
|
2025-10-22 12:16:34 -04:00
|
|
|
Execute the following command within the root directory: `go run main.go` to run as a go program
|
2025-10-16 17:11:05 -04:00
|
|
|
|
2025-10-22 12:16:34 -04:00
|
|
|
Alternatively, the program can be built with `go build` and run via the resulting executable.
|