Update config/app_config.py
Browse files- config/app_config.py +1 -1
config/app_config.py
CHANGED
|
@@ -52,7 +52,7 @@ class ProcessingConfig:
|
|
| 52 |
mask_blur_radius: int = int(os.getenv('MASK_BLUR_RADIUS', '5'))
|
| 53 |
confidence_threshold: float = float(os.getenv('CONFIDENCE_THRESHOLD', '0.85'))
|
| 54 |
|
| 55 |
-
|
| 56 |
output_dir: str = os.getenv('OUTPUT_DIR', 'outputs')
|
| 57 |
output_format: str = os.getenv('OUTPUT_FORMAT', 'mp4')
|
| 58 |
output_quality: str = os.getenv('OUTPUT_QUALITY', 'high') # low, medium, high
|
|
|
|
| 52 |
mask_blur_radius: int = int(os.getenv('MASK_BLUR_RADIUS', '5'))
|
| 53 |
confidence_threshold: float = float(os.getenv('CONFIDENCE_THRESHOLD', '0.85'))
|
| 54 |
|
| 55 |
+
# Output settings
|
| 56 |
output_dir: str = os.getenv('OUTPUT_DIR', 'outputs')
|
| 57 |
output_format: str = os.getenv('OUTPUT_FORMAT', 'mp4')
|
| 58 |
output_quality: str = os.getenv('OUTPUT_QUALITY', 'high') # low, medium, high
|