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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
|
/* 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;
namespace Handbrake.Functions
{
internal class QueryParser
{
private static readonly CultureInfo Culture = new CultureInfo("en-US", false);
#region Varibles
#region Source
private int q_chaptersFinish;
private int q_chaptersStart;
private int q_dvdTitle;
/// <summary>
/// Returns an Integer
/// DVD Title number.
/// </summary>
public int DVDTitle
{
get { return q_dvdTitle; }
}
/// <summary>
/// Returns an Int
/// DVD Chapter number or chapter range.
/// </summary>
public int DVDChapterStart
{
get { return q_chaptersStart; }
}
/// <summary>
/// Returns an Int
/// DVD Chapter number or chapter range.
/// </summary>
public int DVDChapterFinish
{
get { return q_chaptersFinish; }
}
#endregion
#region Destination
private string q_format;
private string q_videoEncoder;
/// <summary>
/// Returns a String
/// Full path of the destination.
/// </summary>
public string Format
{
get { return q_format; }
}
/// <summary>
/// Returns an String
/// The Video Encoder used.
/// </summary>
public string VideoEncoder
{
get { return q_videoEncoder; }
}
#endregion
#region Picture Settings
private Boolean q_anamorphic;
private Boolean q_chapterMarkers;
private string q_cropbottom;
private string q_cropLeft;
private string q_cropRight;
private string q_croptop;
private string q_cropValues;
private int q_deBlock;
private string q_decomb;
private string q_deinterlace;
private string q_denoise;
private string q_detelecine;
private Boolean q_looseAnamorphic;
private int q_maxHeight;
private int q_maxWidth;
private int q_videoHeight;
private int q_videoWidth;
/// <summary>
/// Returns an Int
/// The selected Width for the encoding.
/// </summary>
public int Width
{
get { return q_videoWidth; }
}
/// <summary>
/// Returns an Int
/// The selected Height for the encoding.
/// </summary>
public int Height
{
get { return q_videoHeight; }
}
/// <summary>
/// Returns an Int
/// The selected Width for the encoding.
/// </summary>
public int MaxWidth
{
get { return q_maxWidth; }
}
/// <summary>
/// Returns an Int
/// The selected Height for the encoding.
/// </summary>
public int MaxHeight
{
get { return q_maxHeight; }
}
/// <summary>
/// Returns an String
/// Cropping values.
/// </summary>
public string CropValues
{
get { return q_cropValues; }
}
/// <summary>
/// Returns an String
/// Cropping values.
/// </summary>
public string CropTop
{
get { return q_croptop; }
}
/// <summary>
/// Returns an String
/// Cropping values.
/// </summary>
public string CropBottom
{
get { return q_cropbottom; }
}
/// <summary>
/// Returns an String
/// Cropping values.
/// </summary>
public string CropLeft
{
get { return q_cropLeft; }
}
/// <summary>
/// Returns an String
/// Cropping values.
/// </summary>
public string CropRight
{
get { return q_cropRight; }
}
/// <summary>
/// Returns a boolean to indicate wither DeTelecine is on or off
/// </summary>
public string DeTelecine
{
get { return q_detelecine; }
}
/// <summary>
/// Returns a boolean to indicate wither DeBlock is on or off.
/// </summary>
public int DeBlock
{
get { return q_deBlock; }
}
/// <summary>
/// Returns a string with the De-Interlace option used.
/// </summary>
public string DeInterlace
{
get { return q_deinterlace; }
}
/// <summary>
/// Returns a string with the DeNoise option used.
/// </summary>
public string DeNoise
{
get { return q_denoise; }
}
/// <summary>
/// Returns a string with the DeNoise option used.
/// </summary>
public string Decomb
{
get { return q_decomb; }
}
/// <summary>
/// Returns a boolean to indicate wither Anamorphic is on or off.
/// </summary>
public Boolean Anamorphic
{
get { return q_anamorphic; }
}
/// <summary>
/// Returns a boolean to indicate wither Anamorphic is on or off.
/// </summary>
public Boolean LooseAnamorphic
{
get { return q_looseAnamorphic; }
}
/// <summary>
/// Returns a boolean to indicate wither Chapter Markers is on or off.
/// </summary>
public Boolean ChapterMarkers
{
get { return q_chapterMarkers; }
}
#endregion
#region Video Settings
private string q_avgBitrate;
private Boolean q_grayscale;
private Boolean q_ipodAtom;
private Boolean q_largeMp4;
private Boolean q_optimizeMp4;
private Boolean q_turboFirst;
private Boolean q_twoPass;
private string q_videoFramerate;
private float q_videoQuality;
private string q_videoTargetSize;
/// <summary>
/// Returns a boolean to indicate wither Grayscale is on or off.
/// </summary>
public Boolean Grayscale
{
get { return q_grayscale; }
}
/// <summary>
/// Returns a boolean to indicate wither Two Pass Encoding is on or off.
/// </summary>
public Boolean TwoPass
{
get { return q_twoPass; }
}
/// <summary>
/// Returns a boolean to indicate wither Chapter Markers is on or off.
/// </summary>
public Boolean TurboFirstPass
{
get { return q_turboFirst; }
}
/// <summary>
/// Returns a boolean to indicate wither Larger MP4 files is on or off.
/// </summary>
public Boolean LargeMP4
{
get { return q_largeMp4; }
}
/// <summary>
/// Returns a boolean to indicate wither Larger MP4 files is on or off.
/// </summary>
public Boolean IpodAtom
{
get { return q_ipodAtom; }
}
/// <summary>
/// Returns a boolean to indicate wither Larger MP4 files is on or off.
/// </summary>
public Boolean OptimizeMP4
{
get { return q_optimizeMp4; }
}
/// <summary>
/// Returns a string with the video Framerate
/// </summary>
public string VideoFramerate
{
get { return q_videoFramerate; }
}
/// <summary>
/// Returns a string with the average video bitrate
/// </summary>
public string AverageVideoBitrate
{
get { return q_avgBitrate; }
}
/// <summary>
/// Returns a string with the video target size
/// </summary>
public string VideoTargetSize
{
get { return q_videoTargetSize; }
}
/// <summary>
/// Returns a int with the video quality value
/// </summary>
public float VideoQuality
{
get { return q_videoQuality; }
}
#endregion
#region Audio Settings
private string q_audioBitrate1;
private string q_audioBitrate2;
private string q_audioBitrate3;
private string q_audioBitrate4;
private string q_audioEncoder1;
private string q_audioEncoder2;
private string q_audioEncoder3;
private string q_audioEncoder4;
private string q_audioSamplerate1;
private string q_audioSamplerate2;
private string q_audioSamplerate3;
private string q_audioSamplerate4;
private string q_audioTrack1;
private string q_audioTrack2;
private string q_audioTrack3;
private string q_audioTrack4;
private string q_audioTrackMix1;
private string q_audioTrackMix2;
private string q_audioTrackMix3;
private string q_audioTrackMix4;
private double q_drc1;
private double q_drc2;
private double q_drc3;
private double q_drc4;
private Boolean q_forcedSubs;
private string q_subtitles;
/// <summary>
/// Returns a string with the selected Audio track
/// </summary>
public string AudioTrack1
{
get { return q_audioTrack1; }
}
/// <summary>
/// Returns a string with the selected Audio track
/// </summary>
public string AudioTrack2
{
get { return q_audioTrack2; }
}
/// <summary>
/// Returns a string with the selected Audio track
/// </summary>
public string AudioTrack3
{
get { return q_audioTrack3; }
}
/// <summary>
/// Returns a string with the selected Audio track
/// </summary>
public string AudioTrack4
{
get { return q_audioTrack4; }
}
/// <summary>
/// Returns a string with the First selected Audio track Mix
/// </summary>
public string AudioTrackMix1
{
get { return q_audioTrackMix1; }
}
/// <summary>
/// Returns a string with the First selected Audio track Mix
/// </summary>
public string AudioTrackMix2
{
get { return q_audioTrackMix2; }
}
/// <summary>
/// Returns a string with the First selected Audio track Mix
/// </summary>
public string AudioTrackMix3
{
get { return q_audioTrackMix3; }
}
/// <summary>
/// Returns a string with the First selected Audio track Mix
/// </summary>
public string AudioTrackMix4
{
get { return q_audioTrackMix4; }
}
/// <summary>
/// Returns an String
/// The Audio Encoder used.
/// </summary>
public string AudioEncoder1
{
get { return q_audioEncoder1; }
}
/// <summary>
/// Returns an String
/// The Audio Encoder used.
/// </summary>
public string AudioEncoder2
{
get { return q_audioEncoder2; }
}
/// <summary>
/// Returns an String
/// The Audio Encoder used.
/// </summary>
public string AudioEncoder3
{
get { return q_audioEncoder3; }
}
/// <summary>
/// Returns an String
/// The Audio Encoder used.
/// </summary>
public string AudioEncoder4
{
get { return q_audioEncoder4; }
}
/// <summary>
/// Returns a string with the audio bitrate
/// </summary>
public string AudioBitrate1
{
get { return q_audioBitrate1; }
}
/// <summary>
/// Returns a string with the audio bitrate
/// </summary>
public string AudioBitrate2
{
get { return q_audioBitrate2; }
}
/// <summary>
/// Returns a string with the audio bitrate
/// </summary>
public string AudioBitrate3
{
get { return q_audioBitrate3; }
}
/// <summary>
/// Returns a string with the audio bitrate
/// </summary>
public string AudioBitrate4
{
get { return q_audioBitrate4; }
}
/// <summary>
/// Returns a string with the audio sample rate
/// </summary>
public string AudioSamplerate1
{
get { return q_audioSamplerate1; }
}
/// <summary>
/// Returns a string with the audio sample rate
/// </summary>
public string AudioSamplerate2
{
get { return q_audioSamplerate2; }
}
/// <summary>
/// Returns a string with the audio sample rate
/// </summary>
public string AudioSamplerate3
{
get { return q_audioSamplerate3; }
}
/// <summary>
/// Returns a string with the audio sample rate
/// </summary>
public string AudioSamplerate4
{
get { return q_audioSamplerate4; }
}
/// <summary>
/// Returns a string with the selected subtitle track
/// </summary>
public double DRC1
{
get { return q_drc1; }
}
/// <summary>
/// Returns a string with the selected subtitle track
/// </summary>
public double DRC2
{
get { return q_drc2; }
}
/// <summary>
/// Returns a string with the selected subtitle track
/// </summary>
public double DRC3
{
get { return q_drc3; }
}
/// <summary>
/// Returns a string with the selected subtitle track
/// </summary>
public double DRC4
{
get { return q_drc4; }
}
/// <summary>
/// Returns a string with the selected subtitle track
/// </summary>
public string Subtitles
{
get { return q_subtitles; }
}
/// <summary>
/// Returns a string with the selected subtitle track
/// </summary>
public Boolean ForcedSubtitles
{
get { return q_forcedSubs; }
}
#endregion
#region Other
private string q_h264;
private Boolean q_verbose;
/// <summary>
/// Returns a string with the Advanced H264 query string
/// </summary>
public string H264Query
{
get { return q_h264; }
}
/// <summary>
/// Returns a string with the Advanced H264 query string
/// </summary>
public Boolean Verbose
{
get { return q_verbose; }
}
#endregion
#endregion
// All the Main Window GUI options
/// <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 lanamorphic = Regex.Match(input, @" -P");
Match anamorphic = Regex.Match(input, @" -p ");
// 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 audioTrack1 = Regex.Match(input, @"-a ([0-9]*)");
Match audioTrack2 = Regex.Match(input, @"-a ([0-9]*),([0-9]*)");
Match audioTrack3 = Regex.Match(input, @"-a ([0-9]*),([0-9]*),([0-9]*)");
Match audioTrack4 = Regex.Match(input, @"-a ([0-9]*),([0-9]*),([0-9]*),([0-9]*)");
Match audioTrack1Mix = Regex.Match(input, @"-6 ([0-9a-z0-9]*)");
Match audioTrack2Mix = Regex.Match(input, @"-6 ([0-9a-z0-9]*),([0-9a-z0-9]*)");
Match audioTrack3Mix = Regex.Match(input, @"-6 ([0-9a-z0-9]*),([0-9a-z0-9]*),([0-9a-z0-9]*)");
Match audioTrack4Mix = Regex.Match(input, @"-6 ([0-9a-z0-9]*),([0-9a-z0-9]*),([0-9a-z0-9]*),([0-9a-z0-9]*)");
Match audioEncoder1 = Regex.Match(input, @"-E ([a-zA-Z0-9+]*)");
Match audioEncoder2 = Regex.Match(input, @"-E ([a-zA-Z0-9+]*),([a-zA-Z0-9+]*)");
Match audioEncoder3 = Regex.Match(input, @"-E ([a-zA-Z0-9+]*),([a-zA-Z0-9+]*),([a-zA-Z0-9+]*)");
Match audioEncoder4 = Regex.Match(input, @"-E ([a-zA-Z0-9+]*),([a-zA-Z0-9+]*),([a-zA-Z0-9+]*),([a-zA-Z0-9+]*)");
Match audioBitrate1 = Regex.Match(input, @"-B ([0-9auto]*)");
Match audioBitrate2 = Regex.Match(input, @"-B ([0-9auto]*),([0-9auto]*)");
Match audioBitrate3 = Regex.Match(input, @"-B ([0-9auto]*),([0-9auto]*),([0-9auto]*)");
Match audioBitrate4 = Regex.Match(input, @"-B ([0-9auto]*),([0-9auto]*),([0-9auto]*),([0-9auto]*)");
Match audioSampleRate1 = Regex.Match(input, @"-R ([0-9Auto.]*)");
Match audioSampleRate2 = Regex.Match(input, @"-R ([0-9Auto.]*),([0-9Auto.]*)");
Match audioSampleRate3 = Regex.Match(input, @"-R ([0-9Auto.]*),([0-9Auto.]*),([0-9Auto.]*)");
Match audioSampleRate4 = Regex.Match(input, @"-R ([0-9Auto.]*),([0-9Auto.]*),([0-9Auto.]*),([0-9Auto.]*)");
Match drc1 = Regex.Match(input, @"-D ([0-9.]*)");
Match drc2 = Regex.Match(input, @"-D ([0-9.]*),([0-9.]*)");
Match drc3 = Regex.Match(input, @"-D ([0-9.]*),([0-9.]*),([0-9.]*)");
Match drc4 = Regex.Match(input, @"-D ([0-9.]*),([0-9.]*),([0-9.]*),([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.q_dvdTitle = int.Parse(title.ToString().Replace("-t ", ""));
if (chapters.Success)
{
string[] actTitles = chapters.ToString().Replace("-c ", "").Split('-');
thisQuery.q_chaptersStart = int.Parse(actTitles[0]);
if (actTitles.Length > 1)
{
thisQuery.q_chaptersFinish = int.Parse(actTitles[1]);
}
if ((thisQuery.q_chaptersStart == 1) && (thisQuery.q_chaptersFinish == 0))
thisQuery.q_chaptersFinish = thisQuery.q_chaptersStart;
}
#endregion
#region Output Settings
if (format.Success)
thisQuery.q_format = format.ToString().Replace("-f ", "");
thisQuery.q_largeMp4 = largerMp4.Success;
thisQuery.q_ipodAtom = ipodAtom.Success;
thisQuery.q_optimizeMp4 = optimizeMP4.Success;
#endregion
#region Picture Tab
if (width.Success)
thisQuery.q_videoWidth = int.Parse(width.ToString().Replace("-w ", ""));
if (height.Success)
thisQuery.q_videoHeight = int.Parse(height.ToString().Replace("-l ", ""));
if (maxWidth.Success)
thisQuery.q_maxWidth = int.Parse(maxWidth.ToString().Replace("-X ", ""));
if (maxHeight.Success)
thisQuery.q_maxHeight = int.Parse(maxHeight.ToString().Replace("-Y ", ""));
if (crop.Success)
{
thisQuery.q_cropValues = crop.ToString().Replace("--crop ", "");
string[] actCropValues = thisQuery.q_cropValues.Split(':');
thisQuery.q_croptop = actCropValues[0];
thisQuery.q_cropbottom = actCropValues[1];
thisQuery.q_cropLeft = actCropValues[2];
thisQuery.q_cropRight = actCropValues[3];
}
thisQuery.q_anamorphic = anamorphic.Success;
thisQuery.q_looseAnamorphic = lanamorphic.Success;
#endregion
#region Filters
thisQuery.q_decomb = "Off";
if (decomb.Success)
{
thisQuery.q_decomb = "Default";
if (decombValue.Success)
thisQuery.q_decomb = decombValue.ToString().Replace("--decomb=", "").Replace("\"", "");
}
thisQuery.q_deinterlace = "None";
if (deinterlace.Success)
{
thisQuery.q_deinterlace = deinterlace.ToString().Replace("--deinterlace=", "").Replace("\"", "");
thisQuery.q_deinterlace = thisQuery.q_deinterlace.Replace("fast", "Fast").Replace("slow", "Slow").Replace("slower", "Slower");
thisQuery.q_deinterlace = thisQuery.q_deinterlace.Replace("slowest", "Slowest");
}
thisQuery.q_denoise = "None";
if (denoise.Success)
{
thisQuery.q_denoise = denoise.ToString().Replace("--denoise=", "").Replace("\"", "");
thisQuery.q_denoise = thisQuery.q_denoise.Replace("weak", "Weak").Replace("medium", "Medium").Replace("strong", "Strong");
}
string deblockValue = "";
thisQuery.q_deBlock = 0;
if (deblock.Success)
deblockValue = deblock.ToString().Replace("--deblock=", "");
if (deblockValue != "")
int.TryParse(deblockValue, out thisQuery.q_deBlock);
thisQuery.q_detelecine = "Off";
if (detelecine.Success)
{
thisQuery.q_detelecine = "Default";
if (detelecineValue.Success)
thisQuery.q_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.q_videoEncoder = videoEncoderConvertion;
thisQuery.q_videoFramerate = videoFramerate.Success ? videoFramerate.ToString().Replace("-r ", "") : "Same as source";
thisQuery.q_grayscale = grayscale.Success;
thisQuery.q_twoPass = twoPass.Success;
thisQuery.q_turboFirst = turboFirstPass.Success;
if (videoBitrate.Success)
thisQuery.q_avgBitrate = videoBitrate.ToString().Replace("-b ", "");
if (videoFilesize.Success)
thisQuery.q_videoTargetSize = videoFilesize.ToString().Replace("-S ", "");
if (videoQuality.Success)
{
float qConvert = float.Parse(videoQuality.ToString().Replace("-q ", ""), Culture);
//qConvert = Math.Ceiling(qConvert);
thisQuery.q_videoQuality = qConvert;
}
#endregion
#region Audio Tab
// Tracks
if (noAudio.Success)
thisQuery.q_audioTrack1 = "None";
else if (audioTrack1.Success)
thisQuery.q_audioTrack1 = "Automatic";
if (audioTrack2.Success)
{
string[] audioChan = audioTrack2.ToString().Split(',');
thisQuery.q_audioTrack2 = audioChan[1];
}
else
thisQuery.q_audioTrack2 = "None";
if (audioTrack3.Success)
{
string[] audioChan = audioTrack3.ToString().Split(',');
thisQuery.q_audioTrack3 = audioChan[2];
}
else
thisQuery.q_audioTrack3 = "None";
if (audioTrack4.Success)
{
string[] audioChan = audioTrack4.ToString().Split(',');
thisQuery.q_audioTrack4 = audioChan[3];
}
else
thisQuery.q_audioTrack4 = "None";
// Mixdowns
thisQuery.q_audioTrackMix1 = "Automatic";
if (audioTrack1Mix.Success)
thisQuery.q_audioTrackMix1 =
getMixDown(audioTrack1Mix.ToString().Replace("-6 ", "").Replace(" ", ""));
thisQuery.q_audioTrackMix2 = "Automatic";
if (audioTrack2Mix.Success)
{
string[] audio2mix = audioTrack2Mix.ToString().Split(',');
thisQuery.q_audioTrackMix2 = getMixDown(audio2mix[1].Trim());
}
thisQuery.q_audioTrackMix3 = "Automatic";
if (audioTrack3Mix.Success)
{
string[] audio3mix = audioTrack3Mix.ToString().Split(',');
thisQuery.q_audioTrackMix3 = getMixDown(audio3mix[2].Trim());
}
thisQuery.q_audioTrackMix4 = "Automatic";
if (audioTrack4Mix.Success)
{
string[] audio4mix = audioTrack4Mix.ToString().Split(',');
thisQuery.q_audioTrackMix4 = getMixDown(audio4mix[3].Trim());
}
// Audio Encoders
if (audioEncoder1.Success)
thisQuery.q_audioEncoder1 = getAudioEncoder(audioEncoder1.ToString().Replace("-E ", ""));
if (audioEncoder2.Success)
{
string[] audio2enc = audioEncoder2.ToString().Split(',');
thisQuery.q_audioEncoder2 = getAudioEncoder(audio2enc[1].Trim());
}
if (audioEncoder3.Success)
{
string[] audio3enc = audioEncoder3.ToString().Split(',');
thisQuery.q_audioEncoder3 = getAudioEncoder(audio3enc[2].Trim());
}
if (audioEncoder4.Success)
{
string[] audio4enc = audioEncoder4.ToString().Split(',');
thisQuery.q_audioEncoder4 = getAudioEncoder(audio4enc[3].Trim());
}
// Audio Bitrate
thisQuery.q_audioBitrate1 = "";
if (audioBitrate1.Success)
{
thisQuery.q_audioBitrate1 = audioBitrate1.ToString().Replace("-B ", "").Trim();
if (audioBitrate1.ToString().Replace("-B ", "").Trim() == "0") thisQuery.q_audioBitrate1 = "Auto";
}
thisQuery.q_audioBitrate2 = "";
if (audioBitrate2.Success && audioTrack2.Success)
{
string[] audioBitrateSelect = audioBitrate2.ToString().Split(',');
if (audioBitrateSelect[1].Trim() == "0") audioBitrateSelect[1] = "Auto";
thisQuery.q_audioBitrate2 = audioBitrateSelect[1].Trim();
}
thisQuery.q_audioBitrate3 = "";
if (audioBitrate3.Success && audioTrack3.Success)
{
string[] audioBitrateSelect = audioBitrate3.ToString().Split(',');
if (audioBitrateSelect[2].Trim() == "0") audioBitrateSelect[2] = "Auto";
thisQuery.q_audioBitrate3 = audioBitrateSelect[2].Trim();
}
thisQuery.q_audioBitrate4 = "";
if (audioBitrate4.Success)
{
string[] audioBitrateSelect = audioBitrate4.ToString().Split(',');
if (audioBitrateSelect[3].Trim() == "0") audioBitrateSelect[3] = "Auto";
thisQuery.q_audioBitrate4 = audioBitrateSelect[3].Trim();
}
// Audio Sample Rate
// Make sure to change 0 to Auto
thisQuery.q_audioSamplerate1 = "Auto";
if (audioSampleRate1.Success)
{
thisQuery.q_audioSamplerate1 = audioSampleRate1.ToString().Replace("-R ", "").Trim();
if (thisQuery.q_audioSamplerate1 == "0") thisQuery.q_audioSamplerate1 = "Auto";
}
if (audioSampleRate2.Success)
{
string[] audioSRSelect = audioSampleRate2.ToString().Split(',');
if (audioSRSelect[1] == "0") audioSRSelect[1] = "Auto";
thisQuery.q_audioSamplerate2 = audioSRSelect[1].Trim();
}
if (audioSampleRate3.Success)
{
string[] audioSRSelect = audioSampleRate3.ToString().Split(',');
if (audioSRSelect[2] == "0") audioSRSelect[2] = "Auto";
thisQuery.q_audioSamplerate3 = audioSRSelect[2].Trim();
}
if (audioSampleRate4.Success)
{
string[] audioSRSelect = audioSampleRate4.ToString().Split(',');
if (audioSRSelect[3] == "0") audioSRSelect[3] = "Auto";
thisQuery.q_audioSamplerate4 = audioSRSelect[3].Trim();
}
// DRC
float drcValue;
thisQuery.q_drc1 = 1;
if (drc1.Success)
{
string value = drc1.ToString().Replace("-D ", "");
float.TryParse(value, out drcValue);
thisQuery.q_drc1 = drcValue;
}
thisQuery.q_drc2 = 1;
if (drc2.Success)
{
string[] drcPoint = drc2.ToString().Split(',');
float.TryParse(drcPoint[1], out drcValue);
thisQuery.q_drc2 = drcValue;
}
thisQuery.q_drc3 = 1;
if (drc3.Success)
{
string[] drcPoint = drc3.ToString().Split(',');
float.TryParse(drcPoint[2], out drcValue);
thisQuery.q_drc3 = drcValue;
}
thisQuery.q_drc4 = 1;
if (drc4.Success)
{
string[] drcPoint = drc4.ToString().Split(',');
float.TryParse(drcPoint[3], out drcValue);
thisQuery.q_drc4 = drcValue;
}
// Subtitle Stuff
if (subtitles.Success)
thisQuery.q_subtitles = subtitles.ToString().Replace("-s ", "");
else
thisQuery.q_subtitles = subScan.Success ? "Autoselect" : "None";
thisQuery.q_forcedSubs = forcedSubtitles.Success;
#endregion
#region Chapters Tab
if (chapterMarkersFileMode.Success || chapterMarkers.Success)
thisQuery.q_chapterMarkers = true;
#endregion
#region H.264 and other
//
//H264 Tab
//
if (x264.Success)
thisQuery.q_h264 = x264.ToString().Replace("-x ", "");
//
//Progam Options
//
thisQuery.q_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)
{
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";
case "lame":
return "MP3";
case "vorbis":
return "Vorbis";
case "ac3":
return "AC3";
default:
return "AAC";
}
}
}
}
|