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_vfr;\r
223         /// <summary>\r
224         /// Returns a boolean to indicate wither DeTelecine is on or off\r
225         /// </summary>\r
226         public Boolean VFR\r
227         {\r
228             get\r
229             {\r
230                 return this.q_vfr;\r
231             }\r
232         }\r
233 \r
234         private Boolean q_deBlock;\r
235         /// <summary>\r
236         /// Returns a boolean to indicate wither DeBlock is on or off.\r
237         /// </summary>\r
238         public Boolean DeBlock\r
239         {\r
240             get\r
241             {\r
242                 return this.q_deBlock;\r
243             }\r
244         }\r
245 \r
246         private string q_deinterlace;\r
247         /// <summary>\r
248         /// Returns a string with the De-Interlace option used.\r
249         /// </summary>\r
250         public string DeInterlace\r
251         {\r
252             get\r
253             {\r
254                 return this.q_deinterlace;\r
255             }\r
256         }\r
257 \r
258         private string q_denoise;\r
259         /// <summary>\r
260         /// Returns a string with the DeNoise option used.\r
261         /// </summary>\r
262         public string DeNoise\r
263         {\r
264             get\r
265             {\r
266                 return this.q_denoise;\r
267             }\r
268         }\r
269 \r
270         private Boolean q_anamorphic;\r
271         /// <summary>\r
272         /// Returns a boolean to indicate wither Anamorphic is on or off.\r
273         /// </summary>\r
274         public Boolean Anamorphic\r
275         {\r
276             get\r
277             {\r
278                 return this.q_anamorphic;\r
279             }\r
280         }\r
281 \r
282         private Boolean q_looseAnamorphic;\r
283         /// <summary>\r
284         /// Returns a boolean to indicate wither Anamorphic is on or off.\r
285         /// </summary>\r
286         public Boolean LooseAnamorphic\r
287         {\r
288             get\r
289             {\r
290                 return this.q_looseAnamorphic;\r
291             }\r
292         }\r
293 \r
294         private Boolean q_chapterMarkers;\r
295         /// <summary>\r
296         /// Returns a boolean to indicate wither Chapter Markers is on or off.\r
297         /// </summary>\r
298         public Boolean ChapterMarkers\r
299         {\r
300             get\r
301             {\r
302                 return this.q_chapterMarkers;\r
303             }\r
304         }\r
305 \r
306         private Boolean q_grayscale;\r
307         /// <summary>\r
308         /// Returns a boolean to indicate wither Grayscale is on or off.\r
309         /// </summary>\r
310         public Boolean Grayscale\r
311         {\r
312             get\r
313             {\r
314                 return this.q_grayscale;\r
315             }\r
316         }\r
317 \r
318         private Boolean q_twoPass;\r
319         /// <summary>\r
320         /// Returns a boolean to indicate wither Two Pass Encoding is on or off.\r
321         /// </summary>\r
322         public Boolean TwoPass\r
323         {\r
324             get\r
325             {\r
326                 return this.q_twoPass;\r
327             }\r
328         }\r
329 \r
330         private Boolean q_turboFirst;\r
331         /// <summary>\r
332         /// Returns a boolean to indicate wither Chapter Markers is on or off.\r
333         /// </summary>\r
334         public Boolean TurboFirstPass\r
335         {\r
336             get\r
337             {\r
338                 return this.q_turboFirst;\r
339             }\r
340         }\r
341 \r
342         private Boolean q_largeMp4;\r
343         /// <summary>\r
344         /// Returns a boolean to indicate wither Larger MP4 files is on or off.\r
345         /// </summary>\r
346         public Boolean LargeMP4\r
347         {\r
348             get\r
349             {\r
350                 return this.q_largeMp4;\r
351             }\r
352         }\r
353 \r
354         private Boolean q_ipodAtom;\r
355         /// <summary>\r
356         /// Returns a boolean to indicate wither Larger MP4 files is on or off.\r
357         /// </summary>\r
358         public Boolean IpodAtom\r
359         {\r
360             get\r
361             {\r
362                 return this.q_ipodAtom;\r
363             }\r
364         }\r
365 \r
366         private Boolean q_optimizeMp4;\r
367         /// <summary>\r
368         /// Returns a boolean to indicate wither Larger MP4 files is on or off.\r
369         /// </summary>\r
370         public Boolean OptimizeMP4\r
371         {\r
372             get\r
373             {\r
374                 return this.q_optimizeMp4;\r
375             }\r
376         }\r
377 \r
378         private string q_videoFramerate;\r
379         /// <summary>\r
380         /// Returns a string with the video Framerate\r
381         /// </summary>\r
382         public string VideoFramerate\r
383         {\r
384             get\r
385             {\r
386                 return this.q_videoFramerate;\r
387             }\r
388         }\r
389 \r
390         private string q_avgBitrate;\r
391         /// <summary>\r
392         /// Returns a string with the average video bitrate\r
393         /// </summary>\r
394         public string AverageVideoBitrate\r
395         {\r
396             get\r
397             {\r
398                 return this.q_avgBitrate;\r
399             }\r
400         }\r
401 \r
402         private string q_videoTargetSize;\r
403         /// <summary>\r
404         /// Returns a string with the video target size\r
405         /// </summary>\r
406         public string VideoTargetSize\r
407         {\r
408             get\r
409             {\r
410                 return this.q_videoTargetSize;\r
411             }\r
412         }\r
413 \r
414         private int q_videoQuality;\r
415         /// <summary>\r
416         /// Returns a int with the video quality value\r
417         /// </summary>\r
418         public int VideoQuality\r
419         {\r
420             get\r
421             {\r
422                 return this.q_videoQuality;\r
423             }\r
424         }\r
425 \r
426         private Boolean q_crf;\r
427         /// <summary>\r
428         /// Returns a boolean to indicate if CRF is on or off.\r
429         /// </summary>\r
430         public Boolean CRF\r
431         {\r
432             get\r
433             {\r
434                 return this.q_crf;\r
435             }\r
436         }\r
437 \r
438         private string q_audioBitrate;\r
439         /// <summary>\r
440         /// Returns a string with the audio bitrate\r
441         /// </summary>\r
442         public string AudioBitrate\r
443         {\r
444             get\r
445             {\r
446                 return this.q_audioBitrate;\r
447             }\r
448         }\r
449 \r
450         private string q_audioSamplerate;\r
451         /// <summary>\r
452         /// Returns a string with the audio sample rate\r
453         /// </summary>\r
454         public string AudioSampleBitrate\r
455         {\r
456             get\r
457             {\r
458                 return this.q_audioSamplerate;\r
459             }\r
460         }\r
461 \r
462         private string q_audioTrack1;\r
463         /// <summary>\r
464         /// Returns a string with the First selected Audio track\r
465         /// </summary>\r
466         public string AudioTrack1\r
467         {\r
468             get\r
469             {\r
470                 return this.q_audioTrack1;\r
471             }\r
472         }\r
473 \r
474         private string q_audioTrackMix;\r
475         /// <summary>\r
476         /// Returns a string with the First selected Audio track Mix\r
477         /// </summary>\r
478         public string AudioTrackMix\r
479         {\r
480             get\r
481             {\r
482                 return this.q_audioTrackMix;\r
483             }\r
484         }\r
485 \r
486         private string q_subtitles;\r
487         /// <summary>\r
488         /// Returns a string with the selected subtitle track\r
489         /// </summary>\r
490         public string Subtitles\r
491         {\r
492             get\r
493             {\r
494                 return this.q_subtitles;\r
495             }\r
496         }\r
497 \r
498         private string q_h264;\r
499         /// <summary>\r
500         /// Returns a string with the Advanced H264 query string\r
501         /// </summary>\r
502         public string H264Query\r
503         {\r
504             get\r
505             {\r
506                 return this.q_h264;\r
507             }\r
508         }\r
509         private Boolean q_verbose;\r
510         /// <summary>\r
511         /// Returns a string with the Advanced H264 query string\r
512         /// </summary>\r
513         public Boolean Verbose\r
514         {\r
515             get\r
516             {\r
517                 return this.q_verbose;\r
518             }\r
519         }\r
520         #endregion\r
521 \r
522         // 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
523         public static QueryParser Parse(String input)\r
524         {\r
525             QueryParser thisQuery = new QueryParser();\r
526 \r
527             #region reg exp\r
528             //Source\r
529             Regex r1 = new Regex(@"(-i)(?:\s\"")([a-zA-Z0-9:\\\s\.]+)(?:\"")");\r
530             Match source = r1.Match(input.Replace('"', '\"'));\r
531             Match title = Regex.Match(input, @"-t ([0-9]*)");\r
532             Match chapters = Regex.Match(input, @"-c ([0-9-]*)");\r
533             Match format = Regex.Match(input, @"-f ([a-z0-9a-z0-9a-z0-9]*)");\r
534 \r
535             //Destination\r
536             Regex r2 = new Regex(@"(-o)(?:\s\"")([a-zA-Z0-9:\\\s\.]+)(?:\"")");\r
537             Match destination = r2.Match(input.Replace('"', '\"'));\r
538             Match width = Regex.Match(input, @"-w ([0-9]*)");\r
539             Match height = Regex.Match(input, @"-l ([0-9]*)");\r
540             Match videoEncoder = Regex.Match(input, @"-e ([a-zA-Z0-9]*)");\r
541             Match audioEncoder = Regex.Match(input, @"-E ([a-zA-Z0-9]*)");\r
542 \r
543             //Picture Settings Tab\r
544             Match deinterlace = Regex.Match(input, @"--deinterlace=([a-z]*)");\r
545             Match denoise = Regex.Match(input, @"--denoise=([a-z]*)");\r
546             Match deblock = Regex.Match(input, @"--deblock");\r
547             Match detelecine = Regex.Match(input, @"--detelecine");\r
548             Match anamorphic = Regex.Match(input, @"-p ");\r
549             Match chapterMarkers = Regex.Match(input, @"-m");\r
550             Match crop = Regex.Match(input, @"--crop ([0-9]):([0-9]):([0-9]):([0-9])");\r
551             Match vfr = Regex.Match(input, @"-V");\r
552             Match lanamorphic = Regex.Match(input, @"-P");\r
553 \r
554             //Video Settings Tab\r
555             Match videoFramerate = Regex.Match(input, @"-r ([0-9]*)");\r
556             Match videoBitrate = Regex.Match(input, @"-b ([0-9]*)");\r
557             Match videoQuality = Regex.Match(input, @"-q ([0-9.]*)");\r
558             Match videoFilesize = Regex.Match(input, @"-S ([0-9.]*)");\r
559             Match CRF = Regex.Match(input, @"-Q");\r
560             Match twoPass = Regex.Match(input, @"-2");\r
561             Match turboFirstPass = Regex.Match(input, @"-T");\r
562             Match grayscale = Regex.Match(input, @"-g");\r
563             Match largerMp4 = Regex.Match(input, @"-4");\r
564             Match ipodAtom = Regex.Match(input, @"-I");\r
565             Match optimizeMP4 = Regex.Match(input, @"-O");\r
566 \r
567             //Audio Settings Tab\r
568             Match subtitles = Regex.Match(input, @"-s ([0-9]*)");\r
569             Match audioBitrate = Regex.Match(input, @"-B ([0-9]*)");\r
570             Match audioSampleRate = Regex.Match(input, @"-R ([0-9.]*)");\r
571             Match audioChannelsMix = Regex.Match(input, @"-6 ([0-9a-z0-9]*)");  // 1 -6 dpl2 // Broken\r
572             Match audioChannel = Regex.Match(input, @"-a ([0-9]*)");\r
573 \r
574             //H264 Tab\r
575             Match x264 = Regex.Match(input, @"-x ([,a-zA-Z0-9=:-]*)");\r
576 \r
577             //Program Options\r
578             Match verbose = Regex.Match(input, @"-v");\r
579             #endregion\r
580 \r
581             try\r
582             {\r
583                 //\r
584                 // Source\r
585                 //\r
586                 #region Source Tab\r
587 \r
588                 thisQuery.q_source = source.ToString().Replace("-i ", "").Replace("\"", "");\r
589                 if (title.Success != false)\r
590                     thisQuery.q_dvdTitle = int.Parse(title.ToString().Replace("-t ", ""));\r
591 \r
592                 if (chapters.Success != false)\r
593                 {\r
594                     string[] actTitles = new string[2];\r
595                     actTitles = chapters.ToString().Replace("-c ", "").Split('-');\r
596                     thisQuery.q_chaptersStart = int.Parse(actTitles[0]);\r
597                     if (actTitles.Length > 1)\r
598                         thisQuery.q_chaptersFinish = int.Parse(actTitles[1]);\r
599                 }\r
600 \r
601                 if (format.Success != false)\r
602                     thisQuery.q_format = format.ToString().Replace("-f ", "");\r
603 \r
604                 #endregion\r
605 \r
606                 //\r
607                 // Destination\r
608                 //\r
609                 #region Destination\r
610                 thisQuery.q_destination = destination.ToString().Replace("-o ", "").Replace("\"", "");\r
611 \r
612                 string videoEncoderConvertion;\r
613                 string audioEncoderConvertion;\r
614 \r
615                 videoEncoderConvertion = videoEncoder.ToString().Replace("-e ", "");\r
616                 switch (videoEncoderConvertion)\r
617                 {\r
618                     case "ffmpeg":\r
619                         videoEncoderConvertion = "Mpeg 4";\r
620                         break;\r
621                     case "xvid":\r
622                         videoEncoderConvertion = "Xvid";\r
623                         break;\r
624                     case "x264":\r
625                         videoEncoderConvertion = "H.264";\r
626                         break;\r
627                     case "x264b13":\r
628                         videoEncoderConvertion = "H.264 Baseline 1.3";\r
629                         break;\r
630                     case "x264b30":\r
631                         videoEncoderConvertion = "H.264 (iPod)";\r
632                         break;\r
633                     default:\r
634                         videoEncoderConvertion = "Mpeg 4";\r
635                         break;\r
636                 }\r
637                 thisQuery.q_videoEncoder = videoEncoderConvertion;\r
638 \r
639                 audioEncoderConvertion = audioEncoder.ToString().Replace("-E ", "");\r
640                 switch (audioEncoderConvertion)\r
641                 {\r
642                     case "faac":\r
643                         audioEncoderConvertion = "AAC";\r
644                         break;\r
645                     case "lame":\r
646                         audioEncoderConvertion = "MP3";\r
647                         break;\r
648                     case "vorbis":\r
649                         audioEncoderConvertion = "Vorbis";\r
650                         break;\r
651                     case "ac3":\r
652                         audioEncoderConvertion = "AC3";\r
653                         break;\r
654                     default:\r
655                         audioEncoderConvertion = "AAC";\r
656                         break;\r
657                 }\r
658                 thisQuery.q_audioEncoder = audioEncoderConvertion;\r
659 \r
660 \r
661                 if (width.Success != false)\r
662                     thisQuery.q_videoWidth = int.Parse(width.ToString().Replace("-w ", ""));\r
663 \r
664                 if (height.Success != false)\r
665                     thisQuery.q_videoHeight = int.Parse(height.ToString().Replace("-l ", ""));\r
666 \r
667                 #endregion\r
668 \r
669                 //\r
670                 //Picture Settings Tab\r
671                 //\r
672                 #region Picture Tab\r
673                 if (crop.Success != false)\r
674                 {\r
675                     thisQuery.q_cropValues = crop.ToString().Replace("--crop ", "");\r
676                     string[] actCropValues = new string[3];\r
677                     actCropValues = thisQuery.q_cropValues.Split(':');\r
678                     thisQuery.q_croptop = actCropValues[0];\r
679                     thisQuery.q_cropbottom = actCropValues[1];\r
680                     thisQuery.q_cropLeft = actCropValues[2];\r
681                     thisQuery.q_cropRight = actCropValues[3];\r
682                 }\r
683 \r
684                 thisQuery.q_detelecine = detelecine.Success;\r
685                 thisQuery.q_deBlock = deblock.Success;\r
686 \r
687                 thisQuery.q_deinterlace = "None";\r
688                 if (deinterlace.Success != false)\r
689                 {\r
690                     switch (deinterlace.ToString().Replace("--deinterlace=", ""))\r
691                     {\r
692                         case "fast":\r
693                             thisQuery.q_deinterlace = "Original (Fast)";\r
694                             break;\r
695                         case "slow":\r
696                             thisQuery.q_deinterlace = "yadif (Slow)";\r
697                             break;\r
698                         case "slower":\r
699                             thisQuery.q_deinterlace = "yadif + mcdeint (Slower)";\r
700                             break;\r
701                         case "slowest":\r
702                             thisQuery.q_deinterlace = "yadif + mcdeint (Slowest)";\r
703                             break;\r
704                         default:\r
705                             thisQuery.q_deinterlace = "None";\r
706                             break;\r
707                     }\r
708                 }\r
709 \r
710                 thisQuery.q_denoise = "None";\r
711                 if (denoise.Success != false)\r
712                 {\r
713                     switch (denoise.ToString().Replace("--denoise=", ""))\r
714                     {\r
715                         case "weak":\r
716                             thisQuery.q_denoise = "Weak";\r
717                             break;\r
718                         case "medium":\r
719                             thisQuery.q_denoise = "Medium";\r
720                             break;\r
721                         case "strong":\r
722                             thisQuery.q_denoise = "Strong";\r
723                             break;\r
724                         default:\r
725                             thisQuery.q_denoise = "None";\r
726                             break;\r
727                     }\r
728 \r
729                 }\r
730                 thisQuery.q_anamorphic = anamorphic.Success;\r
731                 thisQuery.q_chapterMarkers = chapterMarkers.Success;\r
732                 thisQuery.q_vfr = vfr.Success;\r
733                 thisQuery.q_looseAnamorphic = lanamorphic.Success;\r
734 \r
735                 #endregion\r
736 \r
737                 //\r
738                 //Video Settings Tab\r
739                 //\r
740                 #region Video\r
741                 thisQuery.q_grayscale = grayscale.Success;\r
742                 thisQuery.q_twoPass = twoPass.Success;\r
743                 thisQuery.q_turboFirst = turboFirstPass.Success;\r
744                 thisQuery.q_largeMp4 = largerMp4.Success;\r
745                 if (videoFramerate.Success != false)\r
746                     thisQuery.q_videoFramerate = videoFramerate.ToString().Replace("-r ", "");\r
747                 else\r
748                     thisQuery.q_videoFramerate = "Automatic";\r
749 \r
750                 if (videoBitrate.Success != false)\r
751                     thisQuery.q_avgBitrate = videoBitrate.ToString().Replace("-b ", "");\r
752                 if (videoFilesize.Success != false)\r
753                     thisQuery.q_videoTargetSize = videoFilesize.ToString().Replace("-S ", "");\r
754 \r
755                 double qConvert = 0;\r
756                 if (videoQuality.Success != false)\r
757                 {\r
758                     qConvert = double.Parse(videoQuality.ToString().Replace("-q ", "")) * 100;\r
759                     qConvert = System.Math.Ceiling(qConvert);\r
760                     thisQuery.q_videoQuality = int.Parse(qConvert.ToString());\r
761                 }\r
762                 thisQuery.q_crf = CRF.Success;\r
763                 thisQuery.q_ipodAtom = ipodAtom.Success;\r
764                 thisQuery.q_optimizeMp4 = optimizeMP4.Success;\r
765 \r
766                 #endregion\r
767 \r
768                 //\r
769                 //Audio Settings Tab\r
770                 //\r
771                 #region Audio\r
772                 if (audioBitrate.Success != false)\r
773                     thisQuery.q_audioBitrate = audioBitrate.ToString().Replace("-B ", "");\r
774 \r
775                 if (audioSampleRate.Success != false)\r
776                     thisQuery.q_audioSamplerate = audioSampleRate.ToString().Replace("-R ", "");\r
777 \r
778                 if (audioChannel.Success != false)\r
779                     thisQuery.q_audioTrack1 = audioChannel.ToString().Replace("-a ", "");\r
780                 else\r
781                     thisQuery.q_audioTrack1 = "Automatic";\r
782 \r
783                 thisQuery.q_audioTrackMix = "Automatic";\r
784                 if (audioChannelsMix.Success != false)\r
785                 {\r
786                     switch (audioChannelsMix.ToString().Replace("-6 ", "").Replace(" ", ""))\r
787                     {\r
788                         case "mono":\r
789                             thisQuery.q_audioTrackMix = "Mono";\r
790                             break;\r
791                         case "stereo":\r
792                             thisQuery.q_audioTrackMix = "Stereo";\r
793                             break;\r
794                         case "dpl1":\r
795                             thisQuery.q_audioTrackMix = "Dolby Surround";\r
796                             break;\r
797                         case "dpl2":\r
798                             thisQuery.q_audioTrackMix = "Dolby Pro Logic II";\r
799                             break;\r
800                         case "6ch":\r
801                             thisQuery.q_audioTrackMix = "6 Channel Discrete";\r
802                             break;\r
803                         default:\r
804                             thisQuery.q_audioTrackMix = "Automatic";\r
805                             break;\r
806                     }\r
807 \r
808                 }\r
809                 if (subtitles.Success != false)\r
810                     thisQuery.q_subtitles = subtitles.ToString().Replace("-s ", "");\r
811                 else\r
812                     thisQuery.q_subtitles = "None";\r
813 \r
814                 #endregion\r
815 \r
816                 //\r
817                 //H264 tab and other \r
818                 //\r
819                 #region h264 and other\r
820                 //\r
821                 //H264 Tab\r
822                 //\r
823                 if (x264.Success != false)\r
824                 {\r
825                     thisQuery.q_h264 = x264.ToString().Replace("-x ", "");\r
826                 }\r
827 \r
828                 //\r
829                 //Progam Options\r
830                 //\r
831                 thisQuery.q_verbose = verbose.Success;\r
832                 #endregion\r
833             }\r
834             catch (Exception exc)\r
835             {\r
836                 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
837             }\r
838 \r
839             return thisQuery;\r
840         }\r
841     }\r
842 }