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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
|
/* QueryParser.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
using System;
using System.Globalization;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using System.Collections;
namespace Handbrake.Functions
{
internal class QueryParser
{
private static readonly CultureInfo Culture = new CultureInfo("en-US", false);
#region Varibles
#region Source
public int DVDTitle { get; private set; }
public int DVDChapterStart { get; private set; }
public int DVDChapterFinish { get; private set; }
#endregion
#region Output Settings
public string Format { get; private set; }
public Boolean LargeMP4 { get; private set; }
public Boolean IpodAtom { get; private set; }
public Boolean OptimizeMP4 { get; private set; }
#endregion
#region Picture Settings
public int Width { get; private set; }
public int Height { get; private set; }
public int MaxWidth { get; private set; }
public int MaxHeight { get; private set; }
public string CropValues { get; private set; }
public string CropTop { get; private set; }
public string CropBottom { get; private set; }
public string CropLeft { get; private set; }
public string CropRight { get; private set; }
public int AnamorphicMode { get; private set; }
public Boolean keepDisplayAsect { get; private set; }
public double displayWidthValue { get; private set; }
public int pixelAspectWidth { get; private set; }
public int pixelAspectHeight { get; private set; }
public int AnamorphicModulus { get; private set; }
#endregion
#region Video Filters
public string DeTelecine { get; private set; }
public int DeBlock { get; private set; }
public string DeInterlace { get; private set; }
public string DeNoise { get; private set; }
public string Decomb { get; private set; }
#endregion
#region Video Settings
public string VideoEncoder { get; private set; }
public Boolean Grayscale { get; private set; }
public Boolean TwoPass { get; private set; }
public Boolean TurboFirstPass { get; private set; }
public string VideoFramerate { get; private set; }
public string AverageVideoBitrate { get; private set; }
public string VideoTargetSize { get; private set; }
public float VideoQuality { get; private set; }
#endregion
#region Audio Settings
public ArrayList AudioInformation { get; private set; }
public string Subtitles { get; private set; }
public Boolean ForcedSubtitles { get; private set; }
#endregion
#region Chapter Markers
public Boolean ChapterMarkers { get; private set; }
#endregion
#region Other
public string H264Query { get; private set; }
public Boolean Verbose { get; private set; }
#endregion
#endregion
/// <summary>
/// Takes in a query which can be in any order and parses it.
/// All varibles are then set so they can be used elsewhere.
/// </summary>
/// <param name="input">A ClI Query</param>
/// <returns>A Parsed Query</returns>
public static QueryParser Parse(String input)
{
var thisQuery = new QueryParser();
#region Regular Expressions
// Useful Destination Finder
//Regex r1 = new Regex(@"(-i)(?:\s\"")([a-zA-Z0-9?';!^%&*()_\-:\\\s\.]+)(?:\"")");
//Match source = r1.Match(input.Replace('"', '\"'));
//Source
Match title = Regex.Match(input, @"-t ([0-9]*)");
Match chapters = Regex.Match(input, @"-c ([0-9-]*)");
//Output Settings
Match format = Regex.Match(input, @"-f ([a-z0-9a-z0-9a-z0-9]*)");
Match grayscale = Regex.Match(input, @" -g");
Match largerMp4 = Regex.Match(input, @" -4");
Match ipodAtom = Regex.Match(input, @" -I");
//Picture Settings Tab
Match width = Regex.Match(input, @"-w ([0-9]*)");
Match height = Regex.Match(input, @"-l ([0-9]*)");
Match maxWidth = Regex.Match(input, @"-X ([0-9]*)");
Match maxHeight = Regex.Match(input, @"-Y ([0-9]*)");
Match crop = Regex.Match(input, @"--crop ([0-9]*):([0-9]*):([0-9]*):([0-9]*)");
Match looseAnamorphic = Regex.Match(input, @"--loose-anamorphic");
Match strictAnamorphic = Regex.Match(input, @"--strict-anamorphic");
Match customAnamorphic = Regex.Match(input, @"--custom-anamorphic");
Match keepDisplayAsect = Regex.Match(input, @"--keep-display-aspect");
Match displayWidth = Regex.Match(input, @"--display-width ([0-9*])");
Match pixelAspect = Regex.Match(input, @"--pixel-aspect ([0-9]*):([0-9]*)");
Match modulus = Regex.Match(input, @"--modulus ([0-9*])");
// Picture Settings - Filters
Match decomb = Regex.Match(input, @" --decomb");
Match decombValue = Regex.Match(input, @" --decomb=\""([a-zA-Z0-9.:]*)\""");
Match deinterlace = Regex.Match(input, @"--deinterlace=\""([a-zA-Z0-9.:]*)\""");
Match denoise = Regex.Match(input, @"--denoise=\""([a-zA-Z0-9.:]*)\""");
Match deblock = Regex.Match(input, @"--deblock=([0-9:]*)");
Match detelecine = Regex.Match(input, @"--detelecine");
Match detelecineValue = Regex.Match(input, @" --detelecine=\""([a-zA-Z0-9.:]*)\""");
//Video Settings Tab
Match videoEncoder = Regex.Match(input, @"-e ([a-zA-Z0-9]*)");
Match videoFramerate = Regex.Match(input, @"-r ([0-9.]*)");
Match videoBitrate = Regex.Match(input, @"-b ([0-9]*)");
Match videoQuality = Regex.Match(input, @"-q ([0-9.]*)");
Match videoFilesize = Regex.Match(input, @"-S ([0-9.]*)");
Match twoPass = Regex.Match(input, @" -2");
Match turboFirstPass = Regex.Match(input, @" -T");
Match optimizeMP4 = Regex.Match(input, @" -O");
//Audio Settings Tab
Match noAudio = Regex.Match(input, @"-a none");
Match audioTracks = Regex.Match(input, @"-a ([0-9,]*)");
Match audioTrackMixes = Regex.Match(input, @"-6 ([0-9a-zA-Z,]*)");
Match audioEncoders = Regex.Match(input, @"-E ([a-zA-Z0-9+,]*)");
Match audioBitrates = Regex.Match(input, @"-B ([0-9a-zA-Z,]*)"); // Auto = a-z
Match audioSampleRates = Regex.Match(input, @"-R ([0-9a-zA-Z.,]*)"); // Auto = a-z
Match drcValues = Regex.Match(input, @"-D ([0-9.,]*)");
Match subtitles = Regex.Match(input, @"-s ([0-9a-zA-Z]*)");
Match subScan = Regex.Match(input, @" -U");
Match forcedSubtitles = Regex.Match(input, @" -F");
// Chapters Tab
Match chapterMarkers = Regex.Match(input, @" -m");
Match chapterMarkersFileMode = Regex.Match(input, @"--markers");
//H264 Tab
Match x264 = Regex.Match(input, @"-x ([.,/a-zA-Z0-9=:-]*)");
//Program Options
Match verbose = Regex.Match(input, @" -v");
#endregion
#region Set Varibles
try
{
#region Source Tab
if (title.Success)
thisQuery.DVDTitle = int.Parse(title.ToString().Replace("-t ", ""));
if (chapters.Success)
{
string[] actTitles = chapters.ToString().Replace("-c ", "").Split('-');
thisQuery.DVDChapterStart = int.Parse(actTitles[0]);
if (actTitles.Length > 1)
{
thisQuery.DVDChapterFinish = int.Parse(actTitles[1]);
}
if ((thisQuery.DVDChapterStart == 1) && (thisQuery.DVDChapterFinish == 0))
thisQuery.DVDChapterFinish = thisQuery.DVDChapterStart;
}
#endregion
#region Output Settings
if (format.Success)
thisQuery.Format = format.ToString().Replace("-f ", "");
thisQuery.LargeMP4 = largerMp4.Success;
thisQuery.IpodAtom = ipodAtom.Success;
thisQuery.OptimizeMP4 = optimizeMP4.Success;
#endregion
#region Picture Tab
if (width.Success)
thisQuery.Width = int.Parse(width.Groups[0].Value.Replace("-w ", ""));
if (height.Success)
thisQuery.Height = int.Parse(height.Groups[0].Value.Replace("-l ", ""));
if (maxWidth.Success)
thisQuery.MaxWidth = int.Parse(maxWidth.Groups[0].Value.Replace("-X ", ""));
if (maxHeight.Success)
thisQuery.MaxHeight = int.Parse(maxHeight.Groups[0].Value.Replace("-Y ", ""));
if (crop.Success)
{
thisQuery.CropValues = crop.ToString().Replace("--crop ", "");
string[] actCropValues = thisQuery.CropValues.Split(':');
thisQuery.CropTop = actCropValues[0];
thisQuery.CropBottom = actCropValues[1];
thisQuery.CropLeft = actCropValues[2];
thisQuery.CropRight = actCropValues[3];
}
if (strictAnamorphic.Success)
thisQuery.AnamorphicMode = 1;
else if (looseAnamorphic.Success)
thisQuery.AnamorphicMode = 2;
else if (customAnamorphic.Success)
thisQuery.AnamorphicMode = 3;
else
thisQuery.AnamorphicMode = 0;
thisQuery.keepDisplayAsect = keepDisplayAsect.Success;
if (displayWidth.Success)
thisQuery.displayWidthValue = double.Parse(displayWidth.Groups[0].Value.Replace("--display-width ", ""));
if (pixelAspect.Success)
thisQuery.pixelAspectWidth = int.Parse(pixelAspect.Groups[0].Value.Replace("--pixel-aspect ", ""));
if (pixelAspect.Success)
thisQuery.pixelAspectHeight = int.Parse(pixelAspect.Groups[1].Value.Replace("--pixel-aspect ", ""));
if (modulus.Success)
thisQuery.AnamorphicModulus = int.Parse(modulus.Groups[0].Value.Replace("--modulus ", ""));
#endregion
#region Filters
thisQuery.Decomb = "Off";
if (decomb.Success)
{
thisQuery.Decomb = "Default";
if (decombValue.Success)
thisQuery.Decomb = decombValue.ToString().Replace("--decomb=", "").Replace("\"", "");
}
thisQuery.DeInterlace = "None";
if (deinterlace.Success)
{
thisQuery.DeInterlace = deinterlace.ToString().Replace("--deinterlace=", "").Replace("\"", "");
thisQuery.DeInterlace = thisQuery.DeInterlace.Replace("fast", "Fast").Replace("slow", "Slow").Replace("slower", "Slower");
thisQuery.DeInterlace = thisQuery.DeInterlace.Replace("slowest", "Slowest");
}
thisQuery.DeNoise = "None";
if (denoise.Success)
{
thisQuery.DeNoise = denoise.ToString().Replace("--denoise=", "").Replace("\"", "");
thisQuery.DeNoise = thisQuery.DeNoise.Replace("weak", "Weak").Replace("medium", "Medium").Replace("strong", "Strong");
}
string deblockValue = "";
thisQuery.DeBlock = 0;
if (deblock.Success)
deblockValue = deblock.ToString().Replace("--deblock=", "");
int dval = 0;
if (deblockValue != "")
int.TryParse(deblockValue, out dval);
thisQuery.DeBlock = dval;
thisQuery.DeTelecine = "Off";
if (detelecine.Success)
{
thisQuery.DeTelecine = "Default";
if (detelecineValue.Success)
thisQuery.DeTelecine = detelecineValue.ToString().Replace("--detelecine=", "").Replace("\"", "");
}
#endregion
#region Video Settings Tab
string videoEncoderConvertion = videoEncoder.ToString().Replace("-e ", "");
switch (videoEncoderConvertion)
{
case "ffmpeg":
videoEncoderConvertion = "MPEG-4 (FFmpeg)";
break;
case "x264":
videoEncoderConvertion = "H.264 (x264)";
break;
case "theora":
videoEncoderConvertion = "VP3 (Theora)";
break;
default:
videoEncoderConvertion = "MPEG-4 (FFmpeg)";
break;
}
thisQuery.VideoEncoder = videoEncoderConvertion;
thisQuery.VideoFramerate = videoFramerate.Success ? videoFramerate.ToString().Replace("-r ", "") : "Same as source";
thisQuery.Grayscale = grayscale.Success;
thisQuery.TwoPass = twoPass.Success;
thisQuery.TurboFirstPass = turboFirstPass.Success;
if (videoBitrate.Success)
thisQuery.AverageVideoBitrate = videoBitrate.ToString().Replace("-b ", "");
if (videoFilesize.Success)
thisQuery.VideoTargetSize = videoFilesize.ToString().Replace("-S ", "");
if (videoQuality.Success)
{
float qConvert = float.Parse(videoQuality.ToString().Replace("-q ", ""), Culture);
thisQuery.VideoQuality = qConvert;
}
#endregion
#region Audio Tab
// Find out how many tracks we need to add by checking how many encoders or audio tracks are selected.
int encoderCount = 0;
if (audioEncoders.Success)
{
string[] audioDataCounters = audioEncoders.ToString().Replace("-E ", "").Split(',');
encoderCount = audioDataCounters.Length;
}
// Get the data from the regular expression results
string[] trackData = null;
string[] trackMixes = null;
string[] trackEncoders = null;
string[] trackBitrates = null;
string[] trackSamplerates = null;
string[] trackDRCvalues = null;
if (audioTracks.Success)
trackData = audioTracks.ToString().Replace("-a ", "").Split(',');
if (audioTrackMixes.Success)
trackMixes = audioTrackMixes.ToString().Replace("-6 ", "").Split(',');
if (audioEncoders.Success)
trackEncoders = audioEncoders.ToString().Replace("-E ", "").Split(',');
if (audioBitrates.Success)
trackBitrates = audioBitrates.ToString().Replace("-B ", "").Split(',');
if (audioSampleRates.Success)
trackSamplerates = audioSampleRates.ToString().Replace("-R ", "").Split(',');
if (drcValues.Success)
trackDRCvalues = drcValues.ToString().Replace("-D ", "").Split(',');
// Create new Audio Track Classes and store them in the ArrayList
ArrayList AllAudioTrackInfo = new ArrayList();
for (int x = 0; x < encoderCount; x++)
{
AudioTrack track = new AudioTrack();
if (trackData != null)
if (trackData.Length >= (x + 1)) // Audio Track
track.Track = trackData[x].Trim();
if (trackMixes != null)
if (trackMixes.Length >= (x + 1)) // Audio Mix
track.MixDown = getMixDown(trackMixes[x].Trim());
if (trackEncoders != null)
if (trackEncoders.Length >= (x + 1)) // Audio Mix
track.Encoder = getAudioEncoder(trackEncoders[x].Trim());
if (trackBitrates != null)
if (trackBitrates.Length >= (x + 1)) // Audio Encoder
track.Bitrate = trackBitrates[x].Trim() == "auto" ? "Auto" : trackBitrates[x].Trim();
if (trackSamplerates != null)
if (trackSamplerates.Length >= (x + 1)) // Audio SampleRate
track.SampleRate = trackSamplerates[x].Trim() == "0" ? "Auto" : trackSamplerates[x].Trim();
if (trackDRCvalues != null)
if (trackDRCvalues.Length >= (x + 1)) // Audio DRC Values
track.DRC = trackDRCvalues[x].Trim();
AllAudioTrackInfo.Add(track);
}
thisQuery.AudioInformation = AllAudioTrackInfo;
// Subtitle Stuff
if (subtitles.Success)
thisQuery.Subtitles = subtitles.ToString().Replace("-s ", "");
else
thisQuery.Subtitles = subScan.Success ? "Autoselect" : "None";
thisQuery.ForcedSubtitles = forcedSubtitles.Success;
#endregion
#region Chapters Tab
if (chapterMarkersFileMode.Success || chapterMarkers.Success)
thisQuery.ChapterMarkers = true;
#endregion
#region H.264 and other
if (x264.Success)
thisQuery.H264Query = x264.ToString().Replace("-x ", "");
thisQuery.Verbose = verbose.Success;
#endregion
}
catch (Exception exc)
{
MessageBox.Show(
"An error has occured in the Query Parser. Please report this error on the forum in the 'Windows' support section. \n\n" +
exc, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
#endregion
return thisQuery;
}
private static string getMixDown(string mixdown)
{
switch (mixdown.Trim())
{
case "mono":
return "Mono";
case "stereo":
return "Stereo";
case "dpl1":
return "Dolby Surround";
case "dpl2":
return "Dolby Pro Logic II";
case "6ch":
return "6 Channel Discrete";
default:
return "Automatic";
}
}
private static string getAudioEncoder(string audioEnc)
{
switch (audioEnc)
{
case "faac":
return "AAC (faac)";
case "lame":
return "MP3 (lame)";
case "vorbis":
return "Vorbis (vorbis)";
case "ac3":
return "AC3 Passthru";
case "dts":
return "DTS Passthru";
default:
return "AAC (faac)";
}
}
}
public class AudioTrack
{
public AudioTrack()
{
// Default Values
Track = "Automatic";
MixDown = "Automatic";
SampleRate = "Auto";
Bitrate = "Auto";
DRC = "1";
}
public string Track { get; set; }
public string MixDown { get; set; }
public string Encoder { get; set; }
public string Bitrate { get; set; }
public string SampleRate { get; set; }
public string DRC { get; set; }
}
}
|