mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
1bc9efd529
* Consts for regex * Add regex for camera username and password * Redact user:pass from ffmpeg logs * Redact ffmpeg commands * Move common function to util * Add tests * Formatting * Remove unused imports * Fix test * Add port to test * Support special characters in passwords * Add tests for special character handling * Remove docs about not supporting special characters
13 lines
356 B
Python
13 lines
356 B
Python
BASE_DIR = "/media/frigate"
|
|
CLIPS_DIR = f"{BASE_DIR}/clips"
|
|
RECORD_DIR = f"{BASE_DIR}/recordings"
|
|
CACHE_DIR = "/tmp/cache"
|
|
YAML_EXT = (".yaml", ".yml")
|
|
PLUS_ENV_VAR = "PLUS_API_KEY"
|
|
PLUS_API_HOST = "https://api.frigate.video"
|
|
|
|
# Regex Consts
|
|
|
|
REGEX_CAMERA_NAME = "^[a-zA-Z0-9_-]+$"
|
|
REGEX_CAMERA_USER_PASS = "[a-zA-Z0-9_-]+:[a-zA-Z0-9!*'();:@&=+$,?%#_-]+@"
|