OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Functions / QueryParser.cs
1 using System;\r
2 using System.Collections.Generic;\r
3 using System.Text;\r
4 using System.Text.RegularExpressions;\r
5 using System.Windows.Forms;\r
6 \r
7 namespace Handbrake.Functions\r
8 {\r
9     class QueryParser\r
10     {\r
11 \r
12         // All the Main Window GUI options\r
13         #region Varibles\r
14  \r
15         private string q_source;\r
16         /// <summary>\r
17         /// Returns a String \r
18         /// Full path of the source.\r
19         /// </summary>\r
20         public string Source\r
21         {\r
22             get\r
23             {\r
24                 return this.q_source;\r
25             }\r
26         }\r
27 \r
28         private string q_destination;\r
29         /// <summary>\r
30         /// Returns a String \r
31         /// Full path of the destination.\r
32         /// </summary>\r
33         public string Destination\r
34         {\r
35             get\r
36             {\r
37                 return this.q_destination;\r
38             }\r
39         }\r
40 \r
41         private string q_format;\r
42         /// <summary>\r
43         /// Returns a String \r
44         /// Full path of the destination.\r
45         /// </summary>\r
46         public string Format\r
47         {\r
48             get\r
49             {\r
50                 return this.q_format;\r
51             }\r
52         }\r
53 \r
54         private int q_dvdTitle;\r
55         /// <summary>\r
56         /// Returns an Integer\r
57         /// DVD Title number.\r
58         /// </summary>\r
59         public int DVDTitle\r
60         {\r
61             get\r
62             {\r
63                 return this.q_dvdTitle;\r
64             }\r
65         }\r
66 \r
67         private int q_chaptersStart;\r
68         /// <summary>\r
69         /// Returns an Int\r
70         /// DVD Chapter number or chapter range.\r
71         /// </summary>\r
72         public int DVDChapterStart\r
73         {\r
74             get\r
75             {\r
76                 return this.q_chaptersStart;\r
77             }\r
78         }\r
79 \r
80         private int q_chaptersFinish;\r
81         /// <summary>\r
82         /// Returns an Int\r
83         /// DVD Chapter number or chapter range.\r
84         /// </summary>\r
85         public int DVDChapterFinish\r
86         {\r
87             get\r
88             {\r
89                 return this.q_chaptersFinish;\r
90             }\r
91         }\r
92 \r
93         private string q_videoEncoder;\r
94         /// <summary>\r
95         /// Returns an String\r
96         /// The Video Encoder used.\r
97         /// </summary>\r
98         public string VideoEncoder\r
99         {\r
100             get\r
101             {\r
102                 return this.q_videoEncoder;\r
103             }\r
104         }\r
105 \r
106         private string q_audioEncoder;\r
107         /// <summary>\r
108         /// Returns an String\r
109         /// The Audio Encoder used.\r
110         /// </summary>\r
111         public string AudioEncoder\r
112         {\r
113             get\r
114             {\r
115                 return this.q_audioEncoder;\r
116             }\r
117         }\r
118 \r
119         private int q_videoWidth;\r
120         /// <summary>\r
121         /// Returns an Int\r
122         /// The selected Width for the encoding.\r
123         /// </summary>\r
124         public int Width\r
125         {\r
126             get\r
127             {\r
128                 return this.q_videoWidth;\r
129             }\r
130         }\r
131 \r
132         private int q_videoHeight;\r
133         /// <summary>\r
134         /// Returns an Int\r
135         /// The selected Height for the encoding.\r
136         /// </summary>\r
137         public int Height\r
138         {\r
139             get\r
140             {\r
141                 return this.q_videoHeight;\r
142             }\r
143         }\r
144 \r
145         private string q_cropValues;\r
146         /// <summary>\r
147         /// Returns an String\r
148         /// Cropping values.\r
149         /// </summary>\r
150         public string CropValues\r
151         {\r
152             get\r
153             {\r
154                 return this.q_cropValues;\r
155             }\r
156         }\r
157 \r
158         private string q_croptop;\r
159         /// <summary>\r
160         /// Returns an String\r
161         /// Cropping values.\r
162         /// </summary>\r
163         public string CropTop\r
164         {\r
165             get\r
166             {\r
167                 return this.q_croptop;\r
168             }\r
169         }\r
170 \r
171         private string q_cropbottom;\r
172         /// <summary>\r
173         /// Returns an String\r
174         /// Cropping values.\r
175         /// </summary>\r
176         public string CropBottom\r
177         {\r
178             get\r
179             {\r
180                 return this.q_cropbottom;\r
181             }\r
182         }\r
183 \r
184         private string q_cropLeft;\r
185         /// <summary>\r
186         /// Returns an String\r
187         /// Cropping values.\r
188         /// </summary>\r
189         public string CropLeft\r
190         {\r
191             get\r
192             {\r
193                 return this.q_cropLeft;\r
194             }\r
195         }\r
196 \r
197         private string q_cropRight;\r
198         /// <summary>\r
199         /// Returns an String\r
200         /// Cropping values.\r
201         /// </summary>\r
202         public string CropRight\r
203         {\r
204             get\r
205             {\r
206                 return this.q_cropRight;\r
207             }\r
208         }\r
209 \r
210         private Boolean q_detelecine;\r
211         /// <summary>\r
212         /// Returns a boolean to indicate wither DeTelecine is on or off\r
213         /// </summary>\r
214         public Boolean DeTelecine\r
215         {\r
216             get\r
217             {\r
218                 return this.q_detelecine;\r
219             }\r
220         }\r
221 \r
222         private Boolean q_deBlock;\r
223         /// <summary>\r
224         /// Returns a boolean to indicate wither DeBlock is on or off.\r
225         /// </summary>\r
226         public Boolean DeBlock\r
227         {\r
228             get\r
229             {\r
230                 return this.q_deBlock;\r
231             }\r
232         }\r
233 \r
234         private string q_deinterlace;\r
235         /// <summary>\r
236         /// Returns a string with the De-Interlace option used.\r
237         /// </summary>\r
238         public string DeInterlace\r
239         {\r
240             get\r
241             {\r
242                 return this.q_deinterlace;\r
243             }\r
244         }\r
245 \r
246         private string q_denoise;\r
247         /// <summary>\r
248         /// Returns a string with the DeNoise option used.\r
249         /// </summary>\r
250         public string DeNoise\r
251         {\r
252             get\r
253             {\r
254                 return this.q_denoise;\r
255             }\r
256         }\r
257 \r
258         private Boolean q_anamorphic;\r
259         /// <summary>\r
260         /// Returns a boolean to indicate wither Anamorphic is on or off.\r
261         /// </summary>\r
262         public Boolean Anamorphic\r
263         {\r
264             get\r
265             {\r
266                 return this.q_anamorphic;\r
267             }\r
268         }\r
269 \r
270         private Boolean q_chapterMarkers;\r
271         /// <summary>\r
272         /// Returns a boolean to indicate wither Chapter Markers is on or off.\r
273         /// </summary>\r
274         public Boolean ChapterMarkers\r
275         {\r
276             get\r
277             {\r
278                 return this.q_chapterMarkers;\r
279             }\r
280         }\r
281 \r
282         private Boolean q_grayscale;\r
283         /// <summary>\r
284         /// Returns a boolean to indicate wither Grayscale is on or off.\r
285         /// </summary>\r
286         public Boolean Grayscale\r
287         {\r
288             get\r
289             {\r
290                 return this.q_grayscale;\r
291             }\r
292         }\r
293 \r
294         private Boolean q_twoPass;\r
295         /// <summary>\r
296         /// Returns a boolean to indicate wither Two Pass Encoding is on or off.\r
297         /// </summary>\r
298         public Boolean TwoPass\r
299         {\r
300             get\r
301             {\r
302                 return this.q_twoPass;\r
303             }\r
304         }\r
305 \r
306         private Boolean q_turboFirst;\r
307         /// <summary>\r
308         /// Returns a boolean to indicate wither Chapter Markers is on or off.\r
309         /// </summary>\r
310         public Boolean TurboFirstPass\r
311         {\r
312             get\r
313             {\r
314                 return this.q_turboFirst;\r
315             }\r
316         }\r
317 \r
318         private Boolean q_largeMp4;\r
319         /// <summary>\r
320         /// Returns a boolean to indicate wither Larger MP4 files is on or off.\r
321         /// </summary>\r
322         public Boolean LargeMP4\r
323         {\r
324             get\r
325             {\r
326                 return this.q_largeMp4;\r
327             }\r
328         }\r
329 \r
330         private string q_videoFramerate;\r
331         /// <summary>\r
332         /// Returns a string with the video Framerate\r
333         /// </summary>\r
334         public string VideoFramerate\r
335         {\r
336             get\r
337             {\r
338                 return this.q_videoFramerate;\r
339             }\r
340         }\r
341 \r
342         private string q_avgBitrate;\r
343         /// <summary>\r
344         /// Returns a string with the average video bitrate\r
345         /// </summary>\r
346         public string AverageVideoBitrate\r
347         {\r
348             get\r
349             {\r
350                 return this.q_avgBitrate;\r
351             }\r
352         }\r
353 \r
354         private string  q_videoTargetSize;\r
355         /// <summary>\r
356         /// Returns a string with the video target size\r
357         /// </summary>\r
358         public string VideoTargetSize\r
359         {\r
360             get\r
361             {\r
362                 return this.q_videoTargetSize;\r
363             }\r
364         }\r
365 \r
366         private int q_videoQuality;\r
367         /// <summary>\r
368         /// Returns a int with the video quality value\r
369         /// </summary>\r
370         public int VideoQuality\r
371         {\r
372             get\r
373             {\r
374                 return this.q_videoQuality;\r
375             }\r
376         }\r
377 \r
378         private Boolean q_crf;\r
379         /// <summary>\r
380         /// Returns a boolean to indicate if CRF is on or off.\r
381         /// </summary>\r
382         public Boolean CRF\r
383         {\r
384             get\r
385             {\r
386                 return this.q_crf;\r
387             }\r
388         }\r
389 \r
390         private string q_audioBitrate;\r
391         /// <summary>\r
392         /// Returns a string with the audio bitrate\r
393         /// </summary>\r
394         public string AudioBitrate\r
395         {\r
396             get\r
397             {\r
398                 return this.q_audioBitrate;\r
399             }\r
400         }\r
401 \r
402         private string q_audioSamplerate;\r
403         /// <summary>\r
404         /// Returns a string with the audio sample rate\r
405         /// </summary>\r
406         public string AudioSampleBitrate\r
407         {\r
408             get\r
409             {\r
410                 return this.q_audioSamplerate;\r
411             }\r
412         }\r
413 \r
414         private string q_audioTrack1;\r
415         /// <summary>\r
416         /// Returns a string with the First selected Audio track\r
417         /// </summary>\r
418         public string AudioTrack1\r
419         {\r
420             get\r
421             {\r
422                 return this.q_audioTrack1;\r
423             }\r
424         }\r
425 \r
426         private string q_audioTrackMix;\r
427         /// <summary>\r
428         /// Returns a string with the First selected Audio track Mix\r
429         /// </summary>\r
430         public string AudioTrackMix\r
431         {\r
432             get\r
433             {\r
434                 return this.q_audioTrackMix;\r
435             }\r
436         }\r
437 \r
438         private string q_subtitles;\r
439         /// <summary>\r
440         /// Returns a string with the selected subtitle track\r
441         /// </summary>\r
442         public string Subtitles\r
443         {\r
444             get\r
445             {\r
446                 return this.q_subtitles;\r
447             }\r
448         }\r
449 \r
450         private string q_h264;\r
451         /// <summary>\r
452         /// Returns a string with the Advanced H264 query string\r
453         /// </summary>\r
454         public string H264Query\r
455         {\r
456             get\r
457             {\r
458                 return this.q_h264;\r
459             }\r
460         }\r
461         private Boolean q_verbose;\r
462         /// <summary>\r
463         /// Returns a string with the Advanced H264 query string\r
464         /// </summary>\r
465         public Boolean Verbose\r
466         {\r
467             get\r
468             {\r
469                 return this.q_verbose;\r
470             }\r
471         }\r
472         #endregion\r
473 \r
474         // Takes in a query which can be in any order and parses it. All varibles are then set so they can be used elsewhere.\r
475         public static QueryParser Parse(String input)\r
476         {\r
477             QueryParser thisQuery = new QueryParser();\r
478 \r
479             #region reg exp \r
480             //Source\r
481             Regex r1 = new Regex(@"(-i)(?:\s\"")([a-zA-Z0-9:\\\s\.]+)(?:\"")");\r
482             Match source = r1.Match(input.Replace('"', '\"'));\r
483             Match title = Regex.Match(input, @"-t ([0-9]*)");\r
484             Match chapters = Regex.Match(input, @"-c ([0-9-]*)");\r
485             Match format = Regex.Match(input, @"-f ([a-z0-9a-z0-9a-z0-9]*)");\r
486             //-f mp4\r
487 \r
488             //Destination\r
489             Regex r2 = new Regex(@"(-o)(?:\s\"")([a-zA-Z0-9:\\\s\.]+)(?:\"")");\r
490             Match destination = r2.Match(input.Replace('"', '\"'));\r
491             Match width = Regex.Match(input, @"-w ([0-9]*)");\r
492             Match height = Regex.Match(input, @"-l ([0-9]*)");\r
493             Match videoEncoder = Regex.Match(input, @"-e ([a-zA-Z0-9]*)");\r
494             Match audioEncoder = Regex.Match(input, @"-E ([a-zA-Z0-9]*)");\r
495 \r
496             //Picture Settings Tab\r
497             Match deinterlace = Regex.Match(input, @"--deinterlace=([a-z]*)");\r
498             Match denoise = Regex.Match(input, @"--denoise=([a-z]*)");\r
499             Match deblock = Regex.Match(input, @"--deblock");\r
500             Match detelecine = Regex.Match(input, @"--detelecine");\r
501             Match anamorphic = Regex.Match(input, @"-p ");\r
502             Match chapterMarkers = Regex.Match(input, @"-m");\r
503             Match crop = Regex.Match(input, @"--crop ([0-9]):([0-9]):([0-9]):([0-9])");\r
504 \r
505             //Video Settings Tab\r
506             Match videoFramerate = Regex.Match(input, @"-r ([0-9]*)");\r
507             Match videoBitrate = Regex.Match(input, @"-b ([0-9]*)");\r
508             Match videoQuality = Regex.Match(input, @"-q ([0-9.]*)");\r
509             Match videoFilesize = Regex.Match(input, @"-S ([0-9.]*)");\r
510             Match CRF = Regex.Match(input, @"-Q");\r
511             Match twoPass = Regex.Match(input, @"-2");\r
512             Match turboFirstPass = Regex.Match(input, @"-T");\r
513             Match grayscale = Regex.Match(input, @"-g");\r
514             Match largerMp4 = Regex.Match(input, @"-4");\r
515 \r
516             //Audio Settings Tab\r
517             Match subtitles = Regex.Match(input, @"-s ([0-9]*)");\r
518             Match audioBitrate = Regex.Match(input, @"-B ([0-9]*)");\r
519             Match audioSampleRate = Regex.Match(input, @"-R ([0-9.]*)");\r
520             Match audioChannelsMix = Regex.Match(input, @"-6 ([0-9a-z0-9]*)");  // 1 -6 dpl2 // Broken\r
521             Match audioChannel = Regex.Match(input, @"-a ([0-9]*)");\r
522 \r
523             //H264 Tab\r
524             Match x264 = Regex.Match(input, @"-x ([a-zA-Z0-9=:-]*)");\r
525             \r
526             //Program Options\r
527             Match verbose = Regex.Match(input, @"-v");\r
528             #endregion\r
529 \r
530             try\r
531             {\r
532                 //\r
533                 // Source\r
534                 //\r
535                 #region Source Tab\r
536    \r
537                 thisQuery.q_source = source.ToString().Replace("-i ", "").Replace("\"", "");\r
538                 if (title.Success != false)\r
539                 {\r
540                     thisQuery.q_dvdTitle = int.Parse(title.ToString().Replace("-t ", ""));\r
541                 }\r
542 \r
543                 if (chapters.Success != false)\r
544                 {\r
545                      string[] actTitles = new string[2];\r
546                      actTitles = chapters.ToString().Replace("-c ", "").Split('-');\r
547                      thisQuery.q_chaptersStart = int.Parse(actTitles[0]);\r
548                      thisQuery.q_chaptersFinish = int.Parse(actTitles[1]);\r
549                  }\r
550 \r
551                  if (format.Success != false)\r
552                  {\r
553                      \r
554                      thisQuery.q_format = format.ToString().Replace("-f ", "");\r
555                  }\r
556                 #endregion\r
557 \r
558                 //\r
559                 // Destination\r
560                 //\r
561                 #region Destination\r
562                  thisQuery.q_destination = destination.ToString().Replace("-o ","").Replace("\"", "");\r
563 \r
564                  string videoEncoderConvertion;\r
565                  string audioEncoderConvertion;\r
566 \r
567                  videoEncoderConvertion = videoEncoder.ToString().Replace("-e ", "");\r
568                  switch (videoEncoderConvertion)\r
569                  {\r
570                     case "ffmpeg":\r
571                         videoEncoderConvertion = "Mpeg 4";\r
572                         break;\r
573                     case "xvid":\r
574                         videoEncoderConvertion = "Xvid";\r
575                         break;\r
576                     case "x264":\r
577                         videoEncoderConvertion = "H.264";\r
578                         break;\r
579                     case "x264b13":\r
580                         videoEncoderConvertion = "H.264 Baseline 1.3";\r
581                         break;\r
582                     case "x264b30":\r
583                         videoEncoderConvertion = "H.264 (iPod)";\r
584                         break;\r
585                     default:\r
586                         videoEncoderConvertion = "Mpeg 4";\r
587                         break;\r
588                  }\r
589                  thisQuery.q_videoEncoder = videoEncoderConvertion;\r
590 \r
591                  audioEncoderConvertion = audioEncoder.ToString().Replace("-E ", "");\r
592                  switch (audioEncoderConvertion)\r
593                  {\r
594                     case "faac":\r
595                         audioEncoderConvertion = "AAC";\r
596                         break;\r
597                     case "lame":\r
598                         audioEncoderConvertion = "MP3";\r
599                         break;\r
600                     case "vorbis":\r
601                         audioEncoderConvertion = "Vorbis";\r
602                         break;\r
603                     case "ac3":\r
604                         audioEncoderConvertion = "AC3";\r
605                         break;\r
606                     default:\r
607                         audioEncoderConvertion = "AAC";\r
608                         break;\r
609                  }\r
610                  thisQuery.q_audioEncoder =audioEncoderConvertion;\r
611 \r
612 \r
613                  if (width.Success != false)\r
614                  {\r
615                     thisQuery.q_videoWidth = int.Parse(width.ToString().Replace("-w ", ""));\r
616                  }\r
617                  if (height.Success != false)\r
618                  {\r
619                     thisQuery.q_videoHeight = int.Parse(height.ToString().Replace("-l ", ""));\r
620                  }\r
621                  #endregion\r
622 \r
623                 //\r
624                 //Picture Settings Tab\r
625                 //\r
626                 #region Picture Tab\r
627                  if (crop.Success != false)\r
628                  {\r
629                     thisQuery.q_cropValues = crop.ToString().Replace("--crop ", "");\r
630                     string[] actCropValues = new string[3];\r
631                     actCropValues = thisQuery.q_cropValues.Split(':');\r
632                     thisQuery.q_croptop = actCropValues[0];\r
633                     thisQuery.q_cropbottom = actCropValues[1];\r
634                     thisQuery.q_cropLeft = actCropValues[2];\r
635                     thisQuery.q_cropRight = actCropValues[3];\r
636                  }\r
637 \r
638                  thisQuery.q_detelecine = detelecine.Success;\r
639                  thisQuery.q_deBlock = deblock.Success;\r
640 \r
641                  thisQuery.q_deinterlace = "None";\r
642                  if (deinterlace.Success != false)\r
643                  {\r
644                      switch (deinterlace.ToString().Replace("--deinterlace=", ""))\r
645                      {\r
646                          case "fast":\r
647                              thisQuery.q_deinterlace = "Original (Fast)";\r
648                              break;\r
649                          case "slow":\r
650                              thisQuery.q_deinterlace = "yadif (Slow)";\r
651                              break;\r
652                          case "slower":\r
653                              thisQuery.q_deinterlace = "yadif + mcdeint (Slower)";\r
654                              break;\r
655                          case "slowest":\r
656                              thisQuery.q_deinterlace = "yadif + mcdeint (Slowest)";\r
657                              break;\r
658                          default:\r
659                              thisQuery.q_deinterlace = "None";\r
660                              break;\r
661                      }\r
662                  }\r
663 \r
664                  thisQuery.q_denoise = "None";\r
665                  if (denoise.Success != false)\r
666                  {\r
667                      switch (denoise.ToString().Replace("--denoise=", ""))\r
668                      {\r
669                          case "weak":\r
670                              thisQuery.q_denoise = "Weak";\r
671                              break;\r
672                          case "medium":\r
673                              thisQuery.q_denoise = "Medium";\r
674                              break;\r
675                          case "strong":\r
676                              thisQuery.q_denoise = "Strong";\r
677                              break;\r
678                          default:\r
679                              thisQuery.q_denoise = "None";\r
680                              break;\r
681                      }\r
682                     \r
683                  }\r
684                  thisQuery.q_anamorphic = anamorphic.Success;\r
685                  thisQuery.q_chapterMarkers = chapterMarkers.Success;\r
686                  #endregion\r
687 \r
688                 //\r
689                 //Video Settings Tab\r
690                 //\r
691                 #region Video\r
692                 thisQuery.q_grayscale = grayscale.Success;\r
693                 thisQuery.q_twoPass = twoPass.Success;\r
694                 thisQuery.q_turboFirst = turboFirstPass.Success;\r
695                 thisQuery.q_largeMp4 = largerMp4.Success;\r
696                 if (videoFramerate.Success != false)\r
697                 {\r
698                     thisQuery.q_videoFramerate = videoFramerate.ToString().Replace("-r ", "");\r
699                 }\r
700                 if (videoBitrate.Success != false)\r
701                 {\r
702                     thisQuery.q_avgBitrate = videoBitrate.ToString().Replace("-b ", "");\r
703                 }\r
704                 if (videoFilesize.Success != false)\r
705                 {\r
706                     thisQuery.q_videoTargetSize = videoFilesize.ToString().Replace("-S ", "");\r
707                 }\r
708 \r
709                 double qConvert = 0;\r
710                 if (videoQuality.Success != false)\r
711                 {\r
712                     qConvert = double.Parse(videoQuality.ToString().Replace("-q ", "")) * 100;\r
713                     qConvert = System.Math.Ceiling(qConvert);\r
714                     thisQuery.q_videoQuality = int.Parse(qConvert.ToString());\r
715                 }\r
716                 thisQuery.q_crf = CRF.Success;\r
717                 #endregion\r
718 \r
719                 //\r
720                 //Audio Settings Tab\r
721                 //\r
722                 #region Audio\r
723                 if (audioBitrate.Success != false)\r
724                 {\r
725                     thisQuery.q_audioBitrate = audioBitrate.ToString().Replace("-B ", "");\r
726                 }\r
727                 if (audioSampleRate.Success != false)\r
728                 {\r
729                     thisQuery.q_audioSamplerate = audioSampleRate.ToString().Replace("-R ", "");\r
730                 }\r
731                 if (audioChannel.Success != false)\r
732                 {\r
733                     thisQuery.q_audioTrack1 = audioChannel.ToString().Replace("-a ", "");\r
734                 }\r
735                 else\r
736                 {\r
737                     thisQuery.q_audioTrack1 = "Automatic";\r
738                 }\r
739 \r
740                 thisQuery.q_audioTrackMix = "Automatic";\r
741                 if (audioChannelsMix.Success != false)\r
742                 {\r
743                     switch (audioChannelsMix.ToString().Replace("-6 ", "").Replace(" ",""))\r
744                     {\r
745                         case "mono":\r
746                             thisQuery.q_audioTrackMix = "Mono";\r
747                             break;\r
748                         case "stereo":\r
749                             thisQuery.q_audioTrackMix = "Stereo";\r
750                             break;\r
751                         case "dpl1":\r
752                             thisQuery.q_audioTrackMix = "Dolby Surround";\r
753                             break;\r
754                         case "dpl2":\r
755                             thisQuery.q_audioTrackMix = "Dolby Pro Logic II";\r
756                             break;\r
757                         case "6ch":\r
758                             thisQuery.q_audioTrackMix = "6 Channel Discrete";\r
759                             break;\r
760                         default:\r
761                             thisQuery.q_audioTrackMix = "Automatic";\r
762                             break;\r
763                     }\r
764                    \r
765                 }\r
766                 if (subtitles.Success != false)\r
767                 {\r
768                     thisQuery.q_subtitles = subtitles.ToString().Replace("-s ", "");\r
769                 }\r
770                 else\r
771                 {\r
772                     thisQuery.q_subtitles = "None";\r
773                 }\r
774                 #endregion\r
775 \r
776                 //\r
777                 //H264 Tab\r
778                 //\r
779                 if (x264.Success != false)\r
780                 {\r
781                     thisQuery.q_h264 = x264.ToString().Replace("-x ", "");\r
782                 }\r
783 \r
784                 //\r
785                 //Progam Options\r
786                 //\r
787                 thisQuery.q_verbose = verbose.Success;\r
788             }\r
789             catch (Exception exc)\r
790             {\r
791                 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.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
792             }\r
793 \r
794             return thisQuery;\r
795         }\r
796     }\r
797 }