├── .gitignore ├── LICENSE ├── README.md ├── communication_ref.md ├── config.cfg ├── installers ├── r_pi_4_installer.sh └── ubuntu_22.04_installer.sh ├── ossc_client.py └── ossc_client_service.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /ignored/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/README.md -------------------------------------------------------------------------------- /communication_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/communication_ref.md -------------------------------------------------------------------------------- /config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/config.cfg -------------------------------------------------------------------------------- /installers/r_pi_4_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/installers/r_pi_4_installer.sh -------------------------------------------------------------------------------- /installers/ubuntu_22.04_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/installers/ubuntu_22.04_installer.sh -------------------------------------------------------------------------------- /ossc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/ossc_client.py -------------------------------------------------------------------------------- /ossc_client_service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Open-Source-Videos/Matrix-surveillance-camera-controller/HEAD/ossc_client_service.sh --------------------------------------------------------------------------------