You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
351 B
13 lines
351 B
from pathlib import Path
|
|
import re
|
|
from typing import Optional
|
|
|
|
class Config:
|
|
QUEUE_FILE = "queue.json"
|
|
MEDIAINFO_BINARY=Path("/")
|
|
BASE_PATH = Path("/path/to/videos")
|
|
DESTINATION_PATH = Path("/where/to/save/result")
|
|
LOW_BITRATE_THRESHOLD = 550
|
|
FILENAME_REGEX: Optional[re.Pattern] = None
|
|
OVERWRITE: bool = True
|