A very basic/simple RTSP recorder for Linux
- ffmpeg
- User and group called
camrec
(only for standard installation, but it's recommended)
- Run
build.sh
- Put the built binary in
/opt/bin
- Create each RTSP Stream config in
/opt/etc/rtsp-recorder/<alias>.conf
- Put the systemd config in
/etc/systemd/system
- (Optional) Create a directory for the recordings in
/var/rec
- Start/Enable the services for each alias
chmod +x build.sh
./build.sh
mkdir -p /opt/bin /opt/etc/rtsp-recorder /var/rec
cp dist/rtsp-recorder /opt/bin
cp configs/[email protected] /etc/systemd/system
nano /opt/etc/rtsp-recorder/alias.conf # And write the config there
systemctl enable rtsp-recorder@alias --now
#CAMERA_ALIAS=alias # This is not necessary with the standard config because it's defined in the systemd service
RECORDING_TIME=10 # Duration of the recordings, in minutes
RECORDING_TIMEOUT=60 # Timeout for gratefull stop, in seconds
SAVING_PATH=/var/rec # Path to save the recordings
RTSP_URL='rtsp://user:[email protected]:554/stream' # RTSP stream URL
VERBOSE=false # Verbose output