-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofiles.conf
More file actions
160 lines (128 loc) · 3.96 KB
/
Copy pathprofiles.conf
File metadata and controls
160 lines (128 loc) · 3.96 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#### Custom Profiles
#-- Subtitle Fonts ---------------------------------------------#
[sub-baskerville]
profile-desc=Libre Baskerville font
sub-font='Libre Baskerville Bold'
sub-font-size=42
sub-border-size=1.2
[sub-bimbo]
profile-desc=Big Bimbo NC font
sub-font='Big Bimbo NC'
sub-font-size=52
sub-border-size=2.5
[sub-grotesk]
profile-desc=Alte Haas Grotesk font
sub-font='Alte Haas Grotesk Bold'
sub-font-size=42
sub-border-size=1.5
[sub-roland]
profile-desc=RolandBecker font
sub-font='RolandBecker Bold'
sub-font-size=42
sub-border-size=1.5
[sub-gandhisans]
profile-desc=GandhiSans font
sub-font='GandhiSans-Bold'
sub-font-size=42
sub-border-size=1.5
#-- Subtitle Colors --------------------------------------------#
[sub-antique]
profile-desc=Antique sepia color
sub-color='#FFFAE6C8'
sub-border-color='#FF000000'
sub-shadow-color='#C0000000'
[sub-yellow]
profile-desc=Yellow/Orange color
sub-color='#FFE99E1E'
sub-border-color='#FF101010'
sub-shadow-color='#C0000000'
[sub-black]
profile-desc=White on black
sub-color='#FFFFFFFF'
sub-border-color='#FF000000'
sub-shadow-color='#40000000'
[sub-blue]
profile-desc=Blue border
sub-color='#FFFFFFFF'
sub-border-color='#FF005F7F'
sub-shadow-color='#40000000'
#-- Subtitle Presets (Font + Color) ----------------------------#
[sub-sherif]
profile-desc=Baskerville + Antique
sub-font='Libre Baskerville Bold'
sub-font-size=42
sub-border-size=1.2
sub-color='#FFFAE6C8'
sub-border-color='#FF000000'
sub-shadow-color='#C0000000'
[sub-animated]
profile-desc=Bimbo + Blue
sub-font='Big Bimbo NC'
sub-font-size=52
sub-border-size=2.5
sub-color='#FFFFFFFF'
sub-border-color='#FF005F7F'
sub-shadow-color='#40000000'
[sub-dvd]
profile-desc=Grotesk + Yellow
sub-font='Alte Haas Grotesk Bold'
sub-font-size=42
sub-border-size=1.5
sub-color='#FFE99E1E'
sub-border-color='#FF101010'
sub-shadow-color='#C0000000'
[sub-reset]
profile-desc=Reset to default style
sub-font='RolandBecker Bold'
sub-font-size=42
sub-border-size=1.5
sub-color='#FFFFFFFF'
sub-border-color='#FF000000'
sub-shadow-color='#40000000'
#-- Color Correction (VapourSynth) -----------------------------#
[drc]
profile-desc=Fix double range compression
vf-append=@drc:vapoursynth="~~/vs/color_correction/drc.py":buffered-frames=5:concurrent-frames=5
[drc-no]
profile-desc=Reset levels
vf-remove=@drc
[csp_709to601]
profile-desc=Fix colorspace mistagging (BT709 → BT601)
vf-append=@to601:vapoursynth="~~/vs/color_correction/709to601.py":buffered-frames=5:concurrent-frames=5
[csp_601to709]
profile-desc=Fix colorspace mistagging (BT601 → BT709)
vf-remove=@to601
vf-append=@to709:vapoursynth="~~/vs/color_correction/601to709.py":buffered-frames=5:concurrent-frames=5
[csp-no]
profile-desc=Undo colourspace mistagging correction
vf-remove=@to709
#-- Diagnostics (VapourSynth) ----------------------------------#
[info_videoframe]
profile-desc=Printing VideoFrame Info
vf-append=@frameinfo:vapoursynth="~~/vs/info/frameinfo.py":buffered-frames=3:concurrent-frames=4
[info_globals]
profile-desc=Printing Python globals Info
vf-remove=@frameinfo
vf-append=@globalinfo:vapoursynth="~~/vs/info/globals.py":buffered-frames=3:concurrent-frames=4
[info-no]
profile-desc=Stop printing Frame Info
vf-remove=@globalinfo
#-- Histogram (VapourSynth) ------------------------------------#
[histogram_levels]
profile-desc=Histogram (Levels)
vf-append=@histolevels:vapoursynth="~~/vs/histogram/levels.py":buffered-frames=3:concurrent-frames=4
[histogram_color]
profile-desc=Histogram (Color)
vf-remove=@histolevels
vf-append=@histocolor:vapoursynth="~~/vs/histogram/color.py":buffered-frames=3:concurrent-frames=4
[histogram_color2]
profile-desc=Histogram (Color2)
vf-remove=@histocolor
vf-append=@histocolor2:vapoursynth="~~/vs/histogram/color2.py":buffered-frames=3:concurrent-frames=4
[histogram_classic]
profile-desc=Histogram (Classic)
vf-remove=@histocolor2
vf-append=@histoclassic:vapoursynth="~~/vs/histogram/classic.py":buffered-frames=3:concurrent-frames=4
[histogram-no]
profile-desc=Histogram (None)
vf-remove=@histoclassic