-
Notifications
You must be signed in to change notification settings - Fork 2
/
unit2.lfm
171 lines (171 loc) · 3.37 KB
/
unit2.lfm
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
161
162
163
164
165
166
167
168
169
170
171
object Form2: TForm2
Left = 255
Height = 666
Top = 26
Width = 489
Caption = 'Mass File Encoder - Settings'
ClientHeight = 666
ClientWidth = 489
Color = clWindow
DesignTimePPI = 144
LCLVersion = '1.8.0.3'
object Save: TButton
Left = 20
Height = 112
Top = 536
Width = 436
Caption = 'Save and Close'
OnClick = SaveClick
TabOrder = 0
end
object NVENC: TCheckBox
Left = 56
Height = 29
Hint = 'If active and supported: Much faster encoding (up to 10x faster than normal)'
Top = 48
Width = 239
HelpType = htKeyword
Caption = 'Use NVENC GPU encoding'
OnChange = NVENCChange
ParentShowHint = False
ShowHint = True
TabOrder = 1
end
object Label1: TLabel
Left = 32
Height = 25
Top = 184
Width = 115
Caption = 'Video Settings'
ParentColor = False
end
object CUDA: TCheckBox
Left = 56
Height = 29
Hint = 'If active and supported: Slightly faster decoding'
Top = 96
Width = 231
Caption = 'Use CUDA GPU decoding'
OnChange = CUDAChange
ParentShowHint = False
ShowHint = True
TabOrder = 2
end
object Label2: TLabel
Left = 32
Height = 25
Top = 8
Width = 414
Caption = 'Coding options - require Nonfree compiled FFmpeg'
ParentColor = False
end
object Label3: TLabel
Left = 32
Height = 25
Top = 336
Width = 117
Caption = 'Audio Settings'
ParentColor = False
end
object Bitratev: TEdit
Left = 136
Height = 33
Top = 224
Width = 112
OnChange = BitratevChange
TabOrder = 3
Text = '8000k'
end
object Label4: TLabel
Left = 56
Height = 25
Top = 224
Width = 54
Caption = 'Bitrate:'
ParentColor = False
end
object AAC: TRadioButton
Left = 56
Height = 29
Top = 376
Width = 65
Caption = 'AAC'
Checked = True
OnChange = AACChange
TabOrder = 6
TabStop = True
end
object Opus: TRadioButton
Left = 56
Height = 29
Top = 416
Width = 73
Caption = 'Opus'
OnChange = OpusChange
TabOrder = 4
end
object Bitratea: TEdit
Left = 136
Height = 33
Top = 456
Width = 112
OnChange = BitrateaChange
TabOrder = 5
Text = '256k'
end
object Label99: TLabel
Left = 56
Height = 25
Top = 456
Width = 50
Caption = 'Bitrate'
ParentColor = False
end
object Container: TGroupBox
Left = 296
Height = 129
Top = 184
Width = 185
Caption = 'Container'
ClientHeight = 99
ClientWidth = 181
TabOrder = 7
object MKV: TRadioButton
Left = 16
Height = 29
Top = 8
Width = 67
Caption = 'MKV'
Checked = True
OnChange = MKVChange
TabOrder = 1
TabStop = True
end
object MP4: TRadioButton
Left = 16
Height = 29
Top = 48
Width = 66
Caption = 'MP4'
OnChange = MP4Change
TabOrder = 0
end
end
object Prefix: TEdit
Left = 312
Height = 33
Top = 456
Width = 160
OnChange = PrefixChange
TabOrder = 8
Text = 'File'
end
object Label5: TLabel
Left = 312
Height = 25
Top = 424
Width = 118
Caption = 'Filename Prefix'
ParentColor = False
end
end