-
Notifications
You must be signed in to change notification settings - Fork 1
/
usersettings.py
59 lines (43 loc) · 1.84 KB
/
usersettings.py
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
"""User input values for TimelapsePy"""
__version__ = "0.0.1"
__author__ = "Ben Fisher"
# DO NOT EDIT ABOVE THIS LINE
#======================================================================
# Settings for save locations
#======================================================================
directory_name_for_images = 'timelapse_images'
external_drive_name = 'Pullman'
unique_directory_name = False # Recommend keeping this default = False
#======================================================================
# Basic settings for capturing images
#======================================================================
interval_in_seconds_between_capture = 10
image_file_format = 'jpg'
capture_continuously = True
# To capture images daily between the following hours, set
# capture_continuously = False, otherwise the following values
# are ignored. Use 24 hour format.
capture_start_hour = 4 # Inclusive
capture_end_hour = 18 # Exclusive
#======================================================================
# Camera configuration settings
#======================================================================
resolution = 'max'
image_format = 'default'
image_quality = 90
flip_horizontal = False
flip_vertical = False
override_default_focus_settings = False
# Focal modes are 'manual', 'automatic' and 'continuous'. Note that
# 'default' = 'manual'.
# Focal distance ranges from 0.1 cm (10) to infinity (0)
user_focus_mode = 'manual'
user_focal_distance = 0
#======================================================================
# Render to mp4 video
#======================================================================
create_mp4 = False
video_name = "video"
frame_rate = 24
# DO NOT EDIT BELOW THIS LINE
print(f'{__name__} <version {__version__}> successfully imported')