-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
57 lines (48 loc) · 1.42 KB
/
config.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
# _______________
# |,----------. |\
# || Mockup |=| |
# || Maker || | |
# || . _o| | |
# |`-----------' |/
# ~~~~~~~~~~~~~~~
#
# Make sure to read Reamme.Md before
# going any further.
#
# Once this is configured run the script with
# $ python MockupMaker.py
#
class config():
settings = dict(
# Controls the device.
# Must be in 'quotes'
device = 'iphone',
# Controls the device varient.
# Options are 'white', 'black'
# Must be in 'quotes'
color = 'white',
# Controls the background graphic (jpg).
# Options are 'MoMoney', 'MagneticArrows', 'White'
# Must be in 'quotes'
wallpaper = 'MoMoney',
# Which folder to read videos from.
# Must be in 'quotes'
input_folder = './_input/',
# Enables single file mode.
# Either None or '/path/to/MyFile.mp4'
# Must NOT be in 'quotes' if None
input_file = None,
# Cut X seconds from start
# Should be a float or int number
trim_start = 0,
# Cut X seconds from end
# Should be a float or int number
trim_end = 0,
# Which folder to save videos to.
# Must be in 'quotes'
output_folder = '_output/',
# Useful if you're testing a new background.
# True or False.
# Must NOT be in 'quotes'
testing = False,
)