From 2d0a98c4f4a698e45ca80419db9ee988042653bc Mon Sep 17 00:00:00 2001 From: Claude Pageau Date: Wed, 27 Mar 2024 18:11:23 -0500 Subject: [PATCH] Update strmcam.py --- strmcam.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/strmcam.py b/strmcam.py index 90d53a5..98d4477 100644 --- a/strmcam.py +++ b/strmcam.py @@ -8,7 +8,7 @@ def strmcam(): import subprocess import logging - PROG_VER="13.08" # version of this module + PROG_VER="13.1" # version of this module CAM_WARMUP_SEC = 3 # List of valid camera values in the config.py file CAMLIST = ('usbcam', 'rtspcam', 'pilibcam', 'pilegcam') @@ -99,7 +99,7 @@ def create_cam_thread(cam_name): if not is_pi_legacy_cam(): if not os.path.exists('/usr/bin/libcamera-still'): logging.error('libcamera not Installed') - logging.info('Edit configcam.py and Change CAMERA variable as Required.') + logging.info('Edit config.py and Change CAMERA variable as Required.') sys.exit(1) if not os.path.exists('strmpilibcam.py'): logging.error("strmpilibcam.py File Not Found.") @@ -116,7 +116,7 @@ def create_cam_thread(cam_name): else: logging.error('Looks like Pi Legacy Camera is Enabled') - logging.info('Edit configcam.py and Change CAMERA variable as Required.') + logging.info('Edit config.py and Change CAMERA variable as Required.') logging.info('or Disable Legacy Pi Camera using command sudo raspi-config') sys.exit(1)