1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-24 15:01:14 +00:00
bazarr/bazarr/constants.py
2024-05-02 22:53:36 -04:00

12 lines
286 B
Python

# coding=utf-8
import os
# set Bazarr user-agent used to make requests
HEADERS = {"User-Agent": os.environ["SZ_USER_AGENT"]}
# minimum file size for Bazarr to consider it a video
MINIMUM_VIDEO_SIZE = 20480
# maximum size for a subtitles file
MAXIMUM_SUBTITLE_SIZE = 1 * 1024 * 1024