config: Update 3 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 22:38:52 +12:00
parent 62b460cb3f
commit 79c69ee08b
3 changed files with 4 additions and 4 deletions

View File

@@ -21,8 +21,8 @@ services:
# Sub stream configuration
MTX_PATHS_COURT_SUB_SOURCE: ${MTX_PATHS_COURT_SUB_SOURCE}
MTX_PATHS_COURT_SUB_SOURCEPROTOCOL: tcp
# Legacy court path
MTX_PATHS_COURT_SOURCE: ${MTX_PATHS_COURT_SOURCE}
# Legacy court path - use substream for better compatibility
MTX_PATHS_COURT_SOURCE: ${MTX_PATHS_COURT_SUB_SOURCE}
MTX_PATHS_COURT_SOURCEPROTOCOL: tcp
healthcheck:
test: ["CMD", "wget", "-q", "-O", "-", "http://localhost:9997/v2/paths/list"]

View File

@@ -170,7 +170,7 @@
<script>
const config = {
courtId: new URLSearchParams(window.location.search).get('court') || 'court_main',
courtId: new URLSearchParams(window.location.search).get('court') || 'court',
hlsUrl: '/hls/'
};

View File

@@ -30,7 +30,7 @@ cat > "${LOCAL_DATA_FOLDER}/config/.env" <<EOF
# Auto-generated environment file for docker-compose
PROJECT_NAME=${PROJECT_NAME}
RECORDINGS_FOLDER=${RECORDINGS_FOLDER}
MTX_PATHS_COURT_SOURCE=rtsp://${CAMERA_USER}:${CAMERA_PASSWORD}@${CAMERA_IP}:${CAMERA_RTSP_PORT}/cam/realmonitor?channel=1&subtype=0
MTX_PATHS_COURT_SOURCE=rtsp://${CAMERA_USER}:${CAMERA_PASSWORD}@${CAMERA_IP}:${CAMERA_RTSP_PORT}/cam/realmonitor?channel=1&subtype=1
MTX_PATHS_COURT_MAIN_SOURCE=rtsp://${CAMERA_USER}:${CAMERA_PASSWORD}@${CAMERA_IP}:${CAMERA_RTSP_PORT}/cam/realmonitor?channel=1&subtype=0
MTX_PATHS_COURT_SUB_SOURCE=rtsp://${CAMERA_USER}:${CAMERA_PASSWORD}@${CAMERA_IP}:${CAMERA_RTSP_PORT}/cam/realmonitor?channel=1&subtype=1
SQUASHKIWI_API=${SQUASHKIWI_API}