Stephan Wendel 95c1dca13f
feat!: adds camera-streamer to crowsnest
This introduces camera-streamer as streamer option
via `mode: multi`

camera-streamer is a feature packed stream service.
It is capable to deliver mjpg/snapshots/webrtc and rtsp

Limited to raspberry pi sbc's for now.

This should also resolv
Feature request #51
Feature request #37
Fixes #83
Closes #85
Fixes #89

BREAKING CHANGES:

Dropping support for Debian Buster based images and kernels older than
5.15y

Dropping RTSP support due aler9/simple-rtsp-server

Dropping usage of ffmpeg

No support anymore for Raspicam V1 (EOL)

Signed-off-by: Stephan Wendel <me@stephanwe.de>

Signed-off-by: Stephan Wendel <me@stephanwe.de>
2023-03-11 18:57:19 +01:00

65 lines
1.5 KiB
Makefile

#### webcamd - A webcam Service for multiple Cams and Stream Services.
####
#### Written by Stephan Wendel aka KwadFan <me@stephanwe.de>
#### Copyright 2021 - 2022
#### https://github.com/mainsail-crew/crowsnest
####
#### This File is distributed under GPLv3
####
.PHONY: build buildclean config help install unsinstall update
# Setup
USER = $(shell whoami)
BIN_FOLDER = bin
all: help
help:
@echo "This is intended to install crowsnest."
@echo ""
@echo "Some Parts need 'sudo' privileges."
@echo "You'll be asked for password, if needed."
@echo ""
@echo " Usage: make [action]"
@echo ""
@echo " Available actions:"
@echo ""
@echo " config Configures Installer"
@echo " install Installs crowsnest (needs sudo)"
@echo " uninstall Uninstalls crowsnest (needs sudo)"
@echo " build builds binaries"
@echo " buildclean cleans binaries (for recompile)"
@echo " clean Removes Installer config"
@echo " update Pulls latest updates from repository"
@echo ""
install:
@bash -c 'tools/install.sh'
uninstall:
@bash -c 'tools/uninstall.sh'
build:
bash -c 'bin/build.sh --build'
buildclean:
bash -c 'bin/build.sh --clean'
clean:
@if [ -f tools/.config ]; then rm -f tools/.config; fi
@echo "Removed installer config file ..."
config:
@bash -c 'tools/configure.sh'
update:
@git fetch && git pull
report:
@if [ -f ~/report.txt ]; then rm -f ~/report.txt; fi
@bash -c 'tools/dev-helper.sh -a >> ~/report.txt'
@sed -ri 's/\x1B\[([0-9]{1,3}(;[0-9]{1,2})?)?[mGK]//g' ~/report.txt