test: Update 2 files
All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 22s

This commit is contained in:
Your Name
2025-09-01 21:30:45 +12:00
parent a4418ec61f
commit d705fcaf45
2 changed files with 12 additions and 3 deletions

View File

@@ -49,7 +49,7 @@ paths:
# Recording
record: yes
recordPath: /recordings/${COURT_ID}_%Y%m%d_%H%M%S.mp4
recordFormat: mp4
# recordFormat is not supported in MediaMTX - recordings are always in .mp4 format
recordSegmentDuration: 1h
recordDeleteAfter: 720h

View File

@@ -1,8 +1,17 @@
#!/bin/bash
# Test camera RTSP connection
# shellcheck disable=SC1091
# Handle both dropshell execution and manual execution
if [ -z "${AGENT_PATH}" ]; then
# Manual execution - set paths relative to template directory
AGENT_PATH="../../../agent/"
source "./config/.template_info.env"
source "./config/service.env"
fi
source "${AGENT_PATH}/common.sh"
_check_required_env_vars "CAMERA_IP" "CAMERA_USER" "CAMERA_PASSWORD" "CAMERA_RTSP_PORT" "LOCAL_DATA_FOLDER"
_check_required_env_vars "CAMERA_IP" "CAMERA_USER" "CAMERA_PASSWORD" "CAMERA_RTSP_PORT"
echo "Testing camera connection..."
echo "Camera IP: ${CAMERA_IP}"
@@ -22,7 +31,7 @@ echo ""
echo "Testing with ffprobe..."
docker run --rm --network host \
linuxserver/ffmpeg:latest \
ffprobe -v error -show_streams -select_streams v:0 \
ffprobe -v error \
"${RTSP_URL}" 2>&1 | head -20
if [ $? -eq 0 ]; then