forked from scruffynerf/aspectratio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaspect_ratiodefaults.py
More file actions
32 lines (29 loc) · 1.43 KB
/
aspect_ratiodefaults.py
File metadata and controls
32 lines (29 loc) · 1.43 KB
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
# Ratio Names and Ranges
ratio_parent_name = "Aspect Ratios"
# dont uncomment this first line, unless you want to override and redefine it all (if removing ranges is your goal, this is easier)
ratiorange = {}
# you can uncomment any of these and adjust values and/or add new values
# for example: you can replace the single 'Mobile' with 5 unique mobile ratio values, by uncommenting these lines:
# ratiorange["Ratio: Mobile"] = [0.1, 0.4]
# ratiorange["Ratio: 6:13 Mobile"] = [0.45, 0.52]
# ratiorange["Ratio: 9:16 Mobile"] = [0.53, 0.57]
# ratiorange["Ratio: 3:5 Mobile"] = [0.58, 0.64]
# ratiorange["Ratio: 2:3 Mobile"] = [0.65, 0.8]
ratiorange["Ratio: Mobile"] = [0.45, 0.8]
ratiorange["Ratio: Square"] = [0.81, 1.16]
ratiorange["Ratio: Old Time Film"] = [1.17, 1.22]
ratiorange["Ratio: 5:4 Early TV"] = [1.23, 1.27]
ratiorange["Ratio: 4:3"] = [1.28, 1.35]
ratiorange["Ratio: 11:8"] = [1.36, 1.4]
ratiorange["Ratio: IMAX"] = [1.41, 1.47]
ratiorange["Ratio: 3:2 35mm"] = [1.48, 1.53]
ratiorange["Ratio: 14:9"] = [1.54, 1.58]
ratiorange["Ratio: 16:10 or 5:3"] = [1.59, 1.63]
ratiorange["Ratio: 16:9"] = [1.64, 1.79]
ratiorange["Ratio: Cinema Widescreen"] = [1.8, 1.89]
ratiorange["Ratio: Digital IMAX - 4K/2K"] = [1.9, 1.96]
ratiorange["Ratio: 2:1"] = [1.97, 2.1]
ratiorange["Ratio: 70mm"] = [2.11, 2.25]
ratiorange["Ratio: 21:9 Widescreen"] = [2.26, 2.55]
ratiorange["Ratio: Ultra Panavision 70mm"] = [2.56, 2.99]
ratiorange["Ratio: 32:9 Widescreen"] = [3.0, 4]