config.py 254 B

12345678910111213
  1. class Settings():
  2. CAMERA_CONFIG = {
  3. "cam01": "rtsp://admin:password@192.168.1.10:554/live/ch0",
  4. # 可扩展多个摄像头
  5. }
  6. OUTPUT_DIR = "./records"
  7. MAX_TASK_SECONDS = 60 * 10 # 10分钟超时
  8. settings = Settings()