forked from trickortweak/flickr-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
uploadr.ini
97 lines (83 loc) · 4.87 KB
/
uploadr.ini
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[Config]
################################################################################
# Location to scan for new files
################################################################################
FILES_DIR = "YourDir"
################################################################################
# Flickr settings
################################################################################
# Set your own API key and secret message
# Go to http://www.flickr.com/services/apps/create/apply and apply for an API key
#
FLICKR = {
"title" : "",
"description" : "",
"tags" : "auto-upload",
"is_public" : "0",
"is_friend" : "0",
"is_family" : "0",
"api_key" : "YourKey",
"secret" : "YourSecret"
}
################################################################################
# How often to check for new files to upload (in seconds)
################################################################################
SLEEP_TIME = 1 * 60
################################################################################
# Only with --drip-feed option:
# How often to wait between uploading individual files (in seconds)
################################################################################
DRIP_TIME = 1 * 60
################################################################################
# File we keep the history of uploaded files in.
################################################################################
DB_PATH = os.path.join(os.path.dirname(sys.argv[0]), "flickrdb")
################################################################################
# Picasa album definition database
################################################################################
DB_PATH_PICASA = os.path.join(os.path.dirname(sys.argv[0]), "picasadb")
################################################################################
# Location of file where we keep the lock for multiple running processes from happening
################################################################################
LOCK_PATH = os.path.join(os.path.dirname(sys.argv[0]), ".flickrlock")
################################################################################
# Location of file where we keep the tokenfile
################################################################################
TOKEN_PATH = os.path.join(os.path.dirname(sys.argv[0]), ".flickrToken")
################################################################################
# List of folder names you don't want to parse
################################################################################
EXCLUDED_FOLDERS = ["@eaDir","#recycle",".picasaoriginals","_ExcludeSync","Corel Auto-Preserve","Originals","Automatisch beibehalten von Corel"]
################################################################################
# List of filename regular expressions you wish to ignore
# Regex is used to search the filename (as opposed to matching it completely)
################################################################################
IGNORED_REGEX = []
################################################################################
# List of file extensions you agree to upload
################################################################################
ALLOWED_EXT = ["jpg","png","avi","mov","mpg","mp4","3gp"]
################################################################################
# RAW File Conversion (optional)
################################################################################
CONVERT_RAW_FILES = False
RAW_EXT = ["3fr", "ari", "arw", "bay", "crw", "cr2", "cap", "dcs", "dcr", "dng", "drf", "eip", "erf", "fff", "iiq", "k25", "kdc", "mdc", "mef", "mos", "mrw", "nef", "nrw", "obm", "orf", "pef", "ptx", "pxn", "r3d", "raf", "raw", "rwl", "rw2", "rwz", "sr2", "srf", "srw", "x3f"]
RAW_TOOL_PATH = "/volume1/photo/Image-ExifTool-9.69/"
################################################################################
# Files greater than this value won't be uploaded (1Mo = 1000000)
################################################################################
FILE_MAX_SIZE = 50000000
################################################################################
# Do you want to verify each time if already uploaded files have been changed?
################################################################################
MANAGE_CHANGES = True
################################################################################
# Full set name
# Example:
# FILES_DIR = /home/user/media
# File to upload: /home/user/media/2014/05/05/photo.jpg
# FULL_SET_NAME:
# False: 05
# True: 2014/05/05
################################################################################
FULL_SET_NAME = False