-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
28 lines (22 loc) · 742 Bytes
/
example.env
File metadata and controls
28 lines (22 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Your bots secret token
BOT_TOKEN=""
# Archiving
MONITORED_CHANNEL_IDS= # Channel ids seperated by commas
ARCHIVE_CHANNEL_ID=
# Localization
ENABLE_LOCALIZATION=True
DEFAULT_LOCALE="en" # Language that will be used for archive messages
# Download settings
DOWNLOAD_PATH="./clips/"
FILE_NAMING_SCHEME="{title} - {game} - {time}"
# Compression
ENABLE_COMPRESSION=False
KEEP_COMPRESSED_FILES=False # Whether to replace the original clips with their compressed version
MAXIMUM_VIDEO_WIDTH=1920 # height will be automatically chosen to keep aspect ratio of original video
MAXIMUM_THREADS=-1 # Set to -1 to disable throttling
# Database
DATABASE_PATH="archive.db"
# Logging
DISABLE_LOGGING=False
LOG_DIRECTORY="./logs/"
VERBOSE_LOGGING=False