blob: a90410c544c361d5e80ce23aa56a1aa3487870b7 (
plain)
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Preset.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// The preset.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.ApplicationServices.Interop.Json.Presets
{
using System.Collections.Generic;
/// <summary>
/// The preset.
/// </summary>
public class Preset
{
/// <summary>
/// Gets or sets the audio allow aac pass.
/// </summary>
public int AudioAllowAACPass { get; set; }
/// <summary>
/// Gets or sets the audio allow a c 3 pass.
/// </summary>
public int AudioAllowAC3Pass { get; set; }
/// <summary>
/// Gets or sets the audio allow dtshd pass.
/// </summary>
public int AudioAllowDTSHDPass { get; set; }
/// <summary>
/// Gets or sets the audio allow dts pass.
/// </summary>
public int AudioAllowDTSPass { get; set; }
/// <summary>
/// Gets or sets the audio allow m p 3 pass.
/// </summary>
public int AudioAllowMP3Pass { get; set; }
/// <summary>
/// Gets or sets the audio encoder fallback.
/// </summary>
public string AudioEncoderFallback { get; set; }
/// <summary>
/// Gets or sets the audio list.
/// </summary>
public List<AudioList> AudioList { get; set; }
/// <summary>
/// Gets or sets the chapter markers.
/// </summary>
public int ChapterMarkers { get; set; }
/// <summary>
/// Gets or sets the default.
/// </summary>
public int Default { get; set; }
/// <summary>
/// Gets or sets the file format.
/// </summary>
public string FileFormat { get; set; }
/// <summary>
/// Gets or sets a value indicating whether folder.
/// </summary>
public bool Folder { get; set; }
/// <summary>
/// Gets or sets the mp 4 http optimize.
/// </summary>
public int Mp4HttpOptimize { get; set; }
/// <summary>
/// Gets or sets the mp 4 i pod compatible.
/// </summary>
public int Mp4iPodCompatible { get; set; }
/// <summary>
/// Gets or sets the picture auto crop.
/// </summary>
public int PictureAutoCrop { get; set; }
/// <summary>
/// Gets or sets the picture bottom crop.
/// </summary>
public int PictureBottomCrop { get; set; }
/// <summary>
/// Gets or sets the picture deblock.
/// </summary>
public int PictureDeblock { get; set; }
/// <summary>
/// Gets or sets the picture decomb.
/// </summary>
public int PictureDecomb { get; set; }
/// <summary>
/// Gets or sets the picture decomb custom.
/// </summary>
public string PictureDecombCustom { get; set; }
/// <summary>
/// Gets or sets the picture decomb deinterlace.
/// </summary>
public int PictureDecombDeinterlace { get; set; }
/// <summary>
/// Gets or sets the picture deinterlace.
/// </summary>
public int PictureDeinterlace { get; set; }
/// <summary>
/// Gets or sets the picture deinterlace custom.
/// </summary>
public string PictureDeinterlaceCustom { get; set; }
/// <summary>
/// Gets or sets the picture denoise custom.
/// </summary>
public string PictureDenoiseCustom { get; set; }
/// <summary>
/// Gets or sets the picture denoise filter.
/// </summary>
public string PictureDenoiseFilter { get; set; }
/// <summary>
/// Gets or sets the picture detelecine.
/// </summary>
public int PictureDetelecine { get; set; }
/// <summary>
/// Gets or sets the picture detelecine custom.
/// </summary>
public string PictureDetelecineCustom { get; set; }
/// <summary>
/// Gets or sets the picture height.
/// </summary>
public int PictureHeight { get; set; }
/// <summary>
/// Gets or sets the picture keep ratio.
/// </summary>
public int PictureKeepRatio { get; set; }
/// <summary>
/// Gets or sets the picture left crop.
/// </summary>
public int PictureLeftCrop { get; set; }
/// <summary>
/// Gets or sets the picture modulus.
/// </summary>
public int PictureModulus { get; set; }
/// <summary>
/// Gets or sets the picture par.
/// </summary>
public string PicturePAR { get; set; }
/// <summary>
/// Gets or sets the picture right crop.
/// </summary>
public int PictureRightCrop { get; set; }
/// <summary>
/// Gets or sets the picture top crop.
/// </summary>
public int PictureTopCrop { get; set; }
/// <summary>
/// Gets or sets the picture width.
/// </summary>
public int PictureWidth { get; set; }
/// <summary>
/// Gets or sets the preset description.
/// </summary>
public string PresetDescription { get; set; }
/// <summary>
/// Gets or sets the preset name.
/// </summary>
public string PresetName { get; set; }
/// <summary>
/// Gets or sets the type.
/// </summary>
public int Type { get; set; }
/// <summary>
/// Gets or sets the uses picture filters.
/// </summary>
public int UsesPictureFilters { get; set; }
/// <summary>
/// Gets or sets the uses picture settings.
/// </summary>
public int UsesPictureSettings { get; set; }
/// <summary>
/// Gets or sets the video avg bitrate.
/// </summary>
public string VideoAvgBitrate { get; set; }
/// <summary>
/// Gets or sets the video encoder.
/// </summary>
public string VideoEncoder { get; set; }
/// <summary>
/// Gets or sets the video framerate.
/// </summary>
public string VideoFramerate { get; set; }
/// <summary>
/// Gets or sets the video framerate mode.
/// </summary>
public string VideoFramerateMode { get; set; }
/// <summary>
/// Gets or sets the video gray scale.
/// </summary>
public int VideoGrayScale { get; set; }
/// <summary>
/// Gets or sets the video level.
/// </summary>
public string VideoLevel { get; set; }
/// <summary>
/// Gets or sets the video option extra.
/// </summary>
public string VideoOptionExtra { get; set; }
/// <summary>
/// Gets or sets the video preset.
/// </summary>
public string VideoPreset { get; set; }
/// <summary>
/// Gets or sets the video profile.
/// </summary>
public string VideoProfile { get; set; }
/// <summary>
/// Gets or sets the video quality slider.
/// </summary>
public double VideoQualitySlider { get; set; }
/// <summary>
/// Gets or sets the video quality type.
/// </summary>
public int VideoQualityType { get; set; }
/// <summary>
/// Gets or sets the video tune.
/// </summary>
public string VideoTune { get; set; }
/// <summary>
/// Gets or sets the video turbo two pass.
/// </summary>
public int VideoTurboTwoPass { get; set; }
/// <summary>
/// Gets or sets the video two pass.
/// </summary>
public int VideoTwoPass { get; set; }
/// <summary>
/// Gets or sets the x 264 option.
/// </summary>
public string x264Option { get; set; }
/// <summary>
/// Gets or sets the x 264 use advanced options.
/// </summary>
public int x264UseAdvancedOptions { get; set; }
}
}
|