-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.txt
47 lines (39 loc) · 1.97 KB
/
.env.txt
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# The channel where the cytube playlist is
# Found at https://cytu.be/r/(Right Here)
CHANNEL=''
# Setting this to true will make the program prompt for the cookie value
# that cytube uses for logging in, which may be changed every so often
# Setting this to false will make the program prompt for a username and
# password which can also be used
USE_AUTH_COOKIE=false
# The minimum delay in ms between adding an additional video to the playlist
# QUEUE_DELAY=1000 waits 1 second after the last video added before adding the next
QUEUE_DELAY=1000
# Runs the web driver with headless mode off so you can see exactly how the
# Script is using Cytube's ui
SHOW=true
# The amount of time in ms that the program pauses for when finding an issue
# Using the debugger is recommended in this case though
ERROR_DELAY=1000
# Check for any videos by blacklisted channels and warn if any are found in
# the playlist
CHECK_BLACKLISTED=false
# If the playlist is missing a url from the pony archive, this setting
# will tell the program what to do
# This setting can be set to:
# true :
# The missing url will be automatically added
# ask (RECOMMENDED) : You will be asked whether or not the video should be added
# each time a missing video is found. Recomended since some videos manually added
# to the playlist aren't in the archive *
# any other input :
# No videos will be added to the playlist
ADD_IF_MISSING=ask
# * Case [10/13/24] : Don't Mine at Night (re-upload) by Jan Animation Studios has a
# link in the playlist, but not in the archive. Replacement of the alt link was likely forgotten
# so this would be a case where you'd want the program not to enter the alt link
# If this is set to true, then any video found in the cytube playlist that
# has a bad status label in the archive will be reported at the end of the
# program. E.g. supposedly unavailable or private videos found in the playlist
REPORT_CONTRADICTORY_VIDEOS=false
# This file also has to be renamed to .env to work (without the .txt)