From 3352521e1a44f1b2f1f7ae2a2897b404f32670fc Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 29 Sep 2025 20:53:25 -0400 Subject: [PATCH] Add README.md --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..709662e --- /dev/null +++ b/README.md @@ -0,0 +1,20 @@ +CamCap +====== + +A simple app to iterate through a list of ustreamer camera links and stash away a capture at a specific time interval. Take a look at camcap.json.example for the configuration file. It will be found in one of three locations, in this order: + +* /usr/local/etc/camcap.json +* /etc/camcap.json +* ./camcap.json (directory the tool is run from) + +Additionally, all captured images will be put in a directory the same as the camera title and in nested directories by year, month and date, with the final file timestamped and appended with the camera title as well. + +Build +------ + +Ensure you have Go version 1.21 or greater installed. Personally I use https://github.com/asdf-vm/asdf But by now I bet there's dozens of hipper tools. + +In this directory, run: + +```go build camcap.go build/camcap``` +