forked from cyberofficial/Synthalingua_Wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainUI.Designer.vb
More file actions
2541 lines (2536 loc) · 104 KB
/
Copy pathMainUI.Designer.vb
File metadata and controls
2541 lines (2536 loc) · 104 KB
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
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class MainUI
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()>
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()>
Private Sub InitializeComponent()
components = New ComponentModel.Container()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainUI))
GroupBox1 = New GroupBox()
CAP_RadioButton = New RadioButton()
MIC_RadioButton = New RadioButton()
HSL_RadioButton = New RadioButton()
SaveConfigToFileButton = New Button()
Label1 = New Label()
ScriptFileLocation = New TextBox()
SearchForProgramBTN = New Button()
Label2 = New Label()
RamSize = New ComboBox()
ForceRam = New CheckBox()
GroupBox2 = New GroupBox()
GroupBox7 = New GroupBox()
hlspassid = New TextBox()
hlspassword = New TextBox()
Label14 = New Label()
SelectSource = New CheckBox()
AutoHLS_Checkbox = New CheckBox()
cb_halspassword = New CheckBox()
ShowOriginalText = New CheckBox()
ChunkSizeTrackBarValue = New Label()
ChunkSizeTrackBar = New TrackBar()
Label6 = New Label()
HLS_URL = New TextBox()
Label3 = New Label()
CookiesName = New ComboBox()
CookiesRefresh = New Button()
Label8 = New Label()
EnglishTranslationCheckBox = New CheckBox()
SecondaryTranslation = New CheckBox()
Label5 = New Label()
SecondaryTranslationLanguage = New ComboBox()
StreamLanguage = New ComboBox()
Label4 = New Label()
GroupBox3 = New GroupBox()
CPU_RadioButton = New RadioButton()
CUDA_RadioButton = New RadioButton()
OpenScriptDiag = New OpenFileDialog()
ConfigTextBox = New TextBox()
GenerateConfigButton = New Button()
SaveFileDialog = New SaveFileDialog()
PortNumber = New NumericUpDown()
WebServerButton = New CheckBox()
Label10 = New Label()
GroupBox4 = New GroupBox()
Label29 = New Label()
HTTPSPortNumber = New NumericUpDown()
Label28 = New Label()
SettingsTabs = New TabControl()
TabPage1 = New TabPage()
SynthalinguaChan_IMG_2 = New PictureBox()
TabPage2 = New TabPage()
SynthalinguaChan_IMG_3 = New PictureBox()
mic_chunk_size = New NumericUpDown()
SetMicChunkSizeLbl = New Label()
PhraseTimeOutCheckbox = New CheckBox()
RecordTimeOutCHeckBox = New CheckBox()
MicCaliCheckBox = New CheckBox()
MicEnCheckBox = New CheckBox()
microphone_id_button = New Button()
SetMicLbl = New Label()
MicID = New NumericUpDown()
PhraseTimeout = New NumericUpDown()
RecordTimeout = New NumericUpDown()
MicCaliTime = New NumericUpDown()
PhraseTimeOutlbl = New Label()
EnThreshValue = New NumericUpDown()
RecordTimeoutLbl = New Label()
MicCaliLbl = New Label()
Energy_Threshold = New Label()
TabPage3 = New TabPage()
Label22 = New Label()
LaunchWebUIBtn = New Button()
GroupBox12 = New GroupBox()
ModelSizeInfoLblForCaptions = New Label()
max_cpu_time_label = New Label()
batchjobsize = New NumericUpDown()
max_cpu_time = New NumericUpDown()
GroupBox11 = New GroupBox()
BatchModeAuto = New RadioButton()
BatchModeManual = New RadioButton()
GroupBox9 = New GroupBox()
GroupBox10 = New GroupBox()
subtype_burn = New RadioButton()
subtype_embed = New RadioButton()
add_subs = New CheckBox()
substyle_fontname_refresh = New Button()
Label27 = New Label()
substyle_color = New ComboBox()
Label26 = New Label()
substyle_fontname = New ComboBox()
substyle_fontsize = New NumericUpDown()
Label25 = New Label()
Label24 = New Label()
timeout = New NumericUpDown()
TimeoutLabel = New Label()
batchjobs_lbl = New Label()
batchjobs = New TrackBar()
intelligent_mode = New CheckBox()
print_srt_to_console = New CheckBox()
compare_mode = New CheckBox()
silent_duration = New NumericUpDown()
silent_duration_lbl = New Label()
Label18 = New Label()
silent_threshold = New NumericUpDown()
silent_detect = New CheckBox()
word_timestamps = New CheckBox()
CaptionsName = New TextBox()
CaptionsOutput = New TextBox()
Label12 = New Label()
CaptionsInput = New TextBox()
Label11 = New Label()
CaptionsOutputBtn = New Button()
Label9 = New Label()
CaptionsInputBtn = New Button()
SynthalinguaChan_IMG_4 = New PictureBox()
TabPage4 = New TabPage()
Label17 = New Label()
PrecisionCheckBox = New CheckBox()
Label16 = New Label()
modelDIr = New TextBox()
modelDirPicker = New Button()
SynthalinguaChan_IMG_5 = New PictureBox()
TabPage5 = New TabPage()
debugmode = New CheckBox()
SynthalinguaChan_IMG_9 = New PictureBox()
SynthalinguaChan_IMG_8 = New PictureBox()
DisableSynthalinguaChan = New CheckBox()
SynthalinguaChan_IMG_6 = New PictureBox()
GroupBox8 = New GroupBox()
model_openvino = New RadioButton()
model_fasterwhisper = New RadioButton()
model_whisper = New RadioButton()
Label20 = New Label()
WipeSettings = New Button()
EraseCheckBox = New CheckBox()
paddedaudio_nvalue = New Label()
DiscordWebHook = New TextBox()
Label13 = New Label()
paddedaudio_value = New TrackBar()
paddedaudio = New CheckBox()
SynthalinguaChan_IMG_7 = New PictureBox()
WhatModelsBtn = New Label()
demucs_model = New ComboBox()
isolate_vocals = New CheckBox()
MicIDs = New Button()
RunScript = New Button()
GroupBox5 = New GroupBox()
Button3 = New Button()
Label15 = New Label()
WebLinkOG = New Button()
WebLinkT1 = New Button()
WebLinkT2 = New Button()
SubWindow = New Button()
ToolTip1 = New ToolTip(components)
PictureItch = New PictureBox()
GitHubPicture = New PictureBox()
SaveConfig = New Button()
KoFiPicture = New PictureBox()
CheckBoxCMDBLock = New CheckBox()
FolderBrowserDialog1 = New FolderBrowserDialog()
CaptionsInputFile = New OpenFileDialog()
WordBlockList = New CheckBox()
EditBlockList = New Button()
GroupBox6 = New GroupBox()
auto_blocklist = New CheckBox()
RepeatProtection = New CheckBox()
Button1 = New Button()
FolderBrowserDialog2 = New FolderBrowserDialog()
Label7 = New Label()
Label21 = New Label()
demucs_model_jobs = New NumericUpDown()
Label23 = New Label()
SynthalinguaChan_IMG_1 = New PictureBox()
SynthalinguaChan_IMG_10 = New PictureBox()
JetBrainsLogoImg = New PictureBox()
Label19 = New Label()
GitHubSponsorPicture = New PictureBox()
ServerIP = New TextBox()
GroupBox1.SuspendLayout()
GroupBox2.SuspendLayout()
GroupBox7.SuspendLayout()
CType(ChunkSizeTrackBar, ComponentModel.ISupportInitialize).BeginInit()
GroupBox3.SuspendLayout()
CType(PortNumber, ComponentModel.ISupportInitialize).BeginInit()
GroupBox4.SuspendLayout()
CType(HTTPSPortNumber, ComponentModel.ISupportInitialize).BeginInit()
SettingsTabs.SuspendLayout()
TabPage1.SuspendLayout()
CType(SynthalinguaChan_IMG_2, ComponentModel.ISupportInitialize).BeginInit()
TabPage2.SuspendLayout()
CType(SynthalinguaChan_IMG_3, ComponentModel.ISupportInitialize).BeginInit()
CType(mic_chunk_size, ComponentModel.ISupportInitialize).BeginInit()
CType(MicID, ComponentModel.ISupportInitialize).BeginInit()
CType(PhraseTimeout, ComponentModel.ISupportInitialize).BeginInit()
CType(RecordTimeout, ComponentModel.ISupportInitialize).BeginInit()
CType(MicCaliTime, ComponentModel.ISupportInitialize).BeginInit()
CType(EnThreshValue, ComponentModel.ISupportInitialize).BeginInit()
TabPage3.SuspendLayout()
GroupBox12.SuspendLayout()
CType(batchjobsize, ComponentModel.ISupportInitialize).BeginInit()
CType(max_cpu_time, ComponentModel.ISupportInitialize).BeginInit()
GroupBox11.SuspendLayout()
GroupBox9.SuspendLayout()
GroupBox10.SuspendLayout()
CType(substyle_fontsize, ComponentModel.ISupportInitialize).BeginInit()
CType(timeout, ComponentModel.ISupportInitialize).BeginInit()
CType(batchjobs, ComponentModel.ISupportInitialize).BeginInit()
CType(silent_duration, ComponentModel.ISupportInitialize).BeginInit()
CType(silent_threshold, ComponentModel.ISupportInitialize).BeginInit()
CType(SynthalinguaChan_IMG_4, ComponentModel.ISupportInitialize).BeginInit()
TabPage4.SuspendLayout()
CType(SynthalinguaChan_IMG_5, ComponentModel.ISupportInitialize).BeginInit()
TabPage5.SuspendLayout()
CType(SynthalinguaChan_IMG_9, ComponentModel.ISupportInitialize).BeginInit()
CType(SynthalinguaChan_IMG_8, ComponentModel.ISupportInitialize).BeginInit()
CType(SynthalinguaChan_IMG_6, ComponentModel.ISupportInitialize).BeginInit()
GroupBox8.SuspendLayout()
CType(paddedaudio_value, ComponentModel.ISupportInitialize).BeginInit()
CType(SynthalinguaChan_IMG_7, ComponentModel.ISupportInitialize).BeginInit()
GroupBox5.SuspendLayout()
CType(PictureItch, ComponentModel.ISupportInitialize).BeginInit()
CType(GitHubPicture, ComponentModel.ISupportInitialize).BeginInit()
CType(KoFiPicture, ComponentModel.ISupportInitialize).BeginInit()
GroupBox6.SuspendLayout()
CType(demucs_model_jobs, ComponentModel.ISupportInitialize).BeginInit()
CType(SynthalinguaChan_IMG_1, ComponentModel.ISupportInitialize).BeginInit()
CType(SynthalinguaChan_IMG_10, ComponentModel.ISupportInitialize).BeginInit()
CType(JetBrainsLogoImg, ComponentModel.ISupportInitialize).BeginInit()
CType(GitHubSponsorPicture, ComponentModel.ISupportInitialize).BeginInit()
SuspendLayout()
'
' GroupBox1
'
GroupBox1.BackColor = Color.DarkSlateBlue
GroupBox1.Controls.Add(CAP_RadioButton)
GroupBox1.Controls.Add(MIC_RadioButton)
GroupBox1.Controls.Add(HSL_RadioButton)
GroupBox1.ForeColor = Color.FloralWhite
GroupBox1.Location = New Point(10, 9)
GroupBox1.Margin = New Padding(3, 2, 3, 2)
GroupBox1.Name = "GroupBox1"
GroupBox1.Padding = New Padding(3, 2, 3, 2)
GroupBox1.Size = New Size(155, 101)
GroupBox1.TabIndex = 0
GroupBox1.TabStop = False
GroupBox1.Text = "Audio Soruce"
'
' CAP_RadioButton
'
CAP_RadioButton.AutoSize = True
CAP_RadioButton.Location = New Point(5, 65)
CAP_RadioButton.Margin = New Padding(3, 2, 3, 2)
CAP_RadioButton.Name = "CAP_RadioButton"
CAP_RadioButton.Size = New Size(109, 19)
CAP_RadioButton.TabIndex = 1
CAP_RadioButton.TabStop = True
CAP_RadioButton.Text = "Create Captions"
CAP_RadioButton.UseVisualStyleBackColor = True
'
' MIC_RadioButton
'
MIC_RadioButton.AutoSize = True
MIC_RadioButton.Location = New Point(5, 42)
MIC_RadioButton.Margin = New Padding(3, 2, 3, 2)
MIC_RadioButton.Name = "MIC_RadioButton"
MIC_RadioButton.Size = New Size(90, 19)
MIC_RadioButton.TabIndex = 1
MIC_RadioButton.TabStop = True
MIC_RadioButton.Text = "Microphone"
MIC_RadioButton.UseVisualStyleBackColor = True
'
' HSL_RadioButton
'
HSL_RadioButton.AutoSize = True
HSL_RadioButton.Checked = True
HSL_RadioButton.Location = New Point(5, 20)
HSL_RadioButton.Margin = New Padding(3, 2, 3, 2)
HSL_RadioButton.Name = "HSL_RadioButton"
HSL_RadioButton.Size = New Size(86, 19)
HSL_RadioButton.TabIndex = 0
HSL_RadioButton.TabStop = True
HSL_RadioButton.Text = "Live Stream"
HSL_RadioButton.UseVisualStyleBackColor = True
'
' SaveConfigToFileButton
'
SaveConfigToFileButton.FlatAppearance.MouseDownBackColor = Color.Indigo
SaveConfigToFileButton.FlatAppearance.MouseOverBackColor = Color.SlateBlue
SaveConfigToFileButton.FlatStyle = FlatStyle.Popup
SaveConfigToFileButton.Font = New Font("Segoe UI", 12F)
SaveConfigToFileButton.Location = New Point(522, 627)
SaveConfigToFileButton.Margin = New Padding(3, 2, 3, 2)
SaveConfigToFileButton.Name = "SaveConfigToFileButton"
SaveConfigToFileButton.Size = New Size(98, 32)
SaveConfigToFileButton.TabIndex = 1
SaveConfigToFileButton.Text = "Save to File"
SaveConfigToFileButton.UseVisualStyleBackColor = True
'
' Label1
'
Label1.AutoSize = True
Label1.Location = New Point(167, 10)
Label1.Name = "Label1"
Label1.Size = New Size(150, 15)
Label1.TabIndex = 2
Label1.Text = "Script or Portable Location:"
'
' ScriptFileLocation
'
ScriptFileLocation.Location = New Point(323, 7)
ScriptFileLocation.Margin = New Padding(3, 2, 3, 2)
ScriptFileLocation.Name = "ScriptFileLocation"
ScriptFileLocation.PlaceholderText = "C:\Somelocation"
ScriptFileLocation.Size = New Size(256, 23)
ScriptFileLocation.TabIndex = 3
'
' SearchForProgramBTN
'
SearchForProgramBTN.BackColor = Color.DodgerBlue
SearchForProgramBTN.FlatAppearance.MouseDownBackColor = Color.Indigo
SearchForProgramBTN.FlatAppearance.MouseOverBackColor = Color.SlateBlue
SearchForProgramBTN.FlatStyle = FlatStyle.Popup
SearchForProgramBTN.Location = New Point(585, 6)
SearchForProgramBTN.Margin = New Padding(3, 2, 3, 2)
SearchForProgramBTN.Name = "SearchForProgramBTN"
SearchForProgramBTN.Size = New Size(35, 22)
SearchForProgramBTN.TabIndex = 4
SearchForProgramBTN.Text = "..."
SearchForProgramBTN.UseVisualStyleBackColor = False
'
' Label2
'
Label2.AutoSize = True
Label2.BackColor = Color.DarkSlateBlue
Label2.Location = New Point(6, 8)
Label2.Name = "Label2"
Label2.Size = New Size(59, 15)
Label2.TabIndex = 5
Label2.Text = "RAM Size:"
'
' RamSize
'
RamSize.AutoCompleteMode = AutoCompleteMode.Append
RamSize.AutoCompleteSource = AutoCompleteSource.ListItems
RamSize.DropDownStyle = ComboBoxStyle.DropDownList
RamSize.FormattingEnabled = True
RamSize.Items.AddRange(New Object() {"1gb", "2gb", "3gb", "6gb", "7gb", "11gb-v2", "11gb-v3"})
RamSize.Location = New Point(71, 5)
RamSize.Margin = New Padding(3, 2, 3, 2)
RamSize.Name = "RamSize"
RamSize.Size = New Size(72, 23)
RamSize.TabIndex = 6
'
' ForceRam
'
ForceRam.AutoSize = True
ForceRam.Location = New Point(153, 7)
ForceRam.Margin = New Padding(3, 2, 3, 2)
ForceRam.Name = "ForceRam"
ForceRam.Size = New Size(82, 19)
ForceRam.TabIndex = 7
ForceRam.Text = "Force Ram"
ForceRam.UseVisualStyleBackColor = True
'
' GroupBox2
'
GroupBox2.BackColor = Color.DarkSlateBlue
GroupBox2.Controls.Add(GroupBox7)
GroupBox2.Controls.Add(SelectSource)
GroupBox2.Controls.Add(AutoHLS_Checkbox)
GroupBox2.Controls.Add(cb_halspassword)
GroupBox2.Controls.Add(ShowOriginalText)
GroupBox2.Controls.Add(ChunkSizeTrackBarValue)
GroupBox2.Controls.Add(ChunkSizeTrackBar)
GroupBox2.Controls.Add(Label6)
GroupBox2.Controls.Add(HLS_URL)
GroupBox2.Controls.Add(Label3)
GroupBox2.Controls.Add(CookiesName)
GroupBox2.Controls.Add(CookiesRefresh)
GroupBox2.Controls.Add(Label8)
GroupBox2.ForeColor = Color.FloralWhite
GroupBox2.Location = New Point(5, 9)
GroupBox2.Margin = New Padding(3, 2, 3, 2)
GroupBox2.Name = "GroupBox2"
GroupBox2.Padding = New Padding(3, 2, 3, 2)
GroupBox2.Size = New Size(572, 345)
GroupBox2.TabIndex = 8
GroupBox2.TabStop = False
GroupBox2.Text = "HLS Info"
'
' GroupBox7
'
GroupBox7.Controls.Add(hlspassid)
GroupBox7.Controls.Add(hlspassword)
GroupBox7.Controls.Add(Label14)
GroupBox7.ForeColor = Color.FloralWhite
GroupBox7.Location = New Point(6, 145)
GroupBox7.Name = "GroupBox7"
GroupBox7.Size = New Size(441, 184)
GroupBox7.TabIndex = 30
GroupBox7.TabStop = False
GroupBox7.Text = "Stream Credentials"
'
' hlspassid
'
hlspassid.Location = New Point(6, 22)
hlspassid.Name = "hlspassid"
hlspassid.PlaceholderText = "id type"
hlspassid.Size = New Size(163, 23)
hlspassid.TabIndex = 25
'
' hlspassword
'
hlspassword.Location = New Point(6, 51)
hlspassword.Name = "hlspassword"
hlspassword.PasswordChar = "*"c
hlspassword.PlaceholderText = "password/key"
hlspassword.Size = New Size(163, 23)
hlspassword.TabIndex = 26
'
' Label14
'
Label14.AutoSize = True
Label14.Font = New Font("Segoe UI", 10F)
Label14.Location = New Point(6, 77)
Label14.Name = "Label14"
Label14.Size = New Size(423, 95)
Label14.TabIndex = 27
Label14.Text = resources.GetString("Label14.Text")
'
' SelectSource
'
SelectSource.AutoSize = True
SelectSource.Location = New Point(6, 124)
SelectSource.Name = "SelectSource"
SelectSource.Size = New Size(139, 19)
SelectSource.TabIndex = 29
SelectSource.Text = "List Available Sources"
SelectSource.UseVisualStyleBackColor = True
'
' AutoHLS_Checkbox
'
AutoHLS_Checkbox.AutoSize = True
AutoHLS_Checkbox.Location = New Point(6, 76)
AutoHLS_Checkbox.Name = "AutoHLS_Checkbox"
AutoHLS_Checkbox.Size = New Size(124, 19)
AutoHLS_Checkbox.TabIndex = 28
AutoHLS_Checkbox.Text = "Detect HLS Length"
AutoHLS_Checkbox.UseVisualStyleBackColor = True
'
' cb_halspassword
'
cb_halspassword.AutoSize = True
cb_halspassword.Location = New Point(136, 76)
cb_halspassword.Name = "cb_halspassword"
cb_halspassword.Size = New Size(340, 19)
cb_halspassword.TabIndex = 24
cb_halspassword.Text = "HLS Stream has Password (Check before pasting stream url)"
cb_halspassword.UseVisualStyleBackColor = True
'
' ShowOriginalText
'
ShowOriginalText.AutoSize = True
ShowOriginalText.Location = New Point(6, 100)
ShowOriginalText.Margin = New Padding(3, 2, 3, 2)
ShowOriginalText.Name = "ShowOriginalText"
ShowOriginalText.Size = New Size(124, 19)
ShowOriginalText.TabIndex = 23
ShowOriginalText.Text = "Show Original Text"
ShowOriginalText.UseVisualStyleBackColor = True
'
' ChunkSizeTrackBarValue
'
ChunkSizeTrackBarValue.AutoSize = True
ChunkSizeTrackBarValue.Location = New Point(6, 58)
ChunkSizeTrackBarValue.Name = "ChunkSizeTrackBarValue"
ChunkSizeTrackBarValue.Size = New Size(59, 15)
ChunkSizeTrackBarValue.TabIndex = 11
ChunkSizeTrackBarValue.Text = "Chunks: 5"
'
' ChunkSizeTrackBar
'
ChunkSizeTrackBar.Location = New Point(113, 42)
ChunkSizeTrackBar.Margin = New Padding(3, 2, 3, 2)
ChunkSizeTrackBar.Maximum = 30
ChunkSizeTrackBar.Minimum = 1
ChunkSizeTrackBar.Name = "ChunkSizeTrackBar"
ChunkSizeTrackBar.Size = New Size(447, 45)
ChunkSizeTrackBar.TabIndex = 10
ChunkSizeTrackBar.Value = 5
'
' Label6
'
Label6.AutoSize = True
Label6.Location = New Point(6, 42)
Label6.Name = "Label6"
Label6.Size = New Size(108, 15)
Label6.TabIndex = 9
Label6.Text = "Stream Chunk Size:"
'
' HLS_URL
'
HLS_URL.Location = New Point(88, 15)
HLS_URL.Margin = New Padding(3, 2, 3, 2)
HLS_URL.Name = "HLS_URL"
HLS_URL.PlaceholderText = "Stream URL"
HLS_URL.Size = New Size(472, 23)
HLS_URL.TabIndex = 1
'
' Label3
'
Label3.AutoSize = True
Label3.Location = New Point(5, 17)
Label3.Name = "Label3"
Label3.Size = New Size(71, 15)
Label3.TabIndex = 0
Label3.Text = "Stream URL:"
'
' CookiesName
'
CookiesName.AutoCompleteMode = AutoCompleteMode.SuggestAppend
CookiesName.AutoCompleteSource = AutoCompleteSource.ListItems
CookiesName.DropDownStyle = ComboBoxStyle.DropDownList
CookiesName.FormattingEnabled = True
CookiesName.Location = New Point(322, 110)
CookiesName.Margin = New Padding(3, 2, 3, 2)
CookiesName.Name = "CookiesName"
CookiesName.Size = New Size(113, 23)
CookiesName.TabIndex = 26
'
' CookiesRefresh
'
CookiesRefresh.FlatStyle = FlatStyle.Flat
CookiesRefresh.Font = New Font("Segoe UI", 8F)
CookiesRefresh.ImageAlign = ContentAlignment.TopLeft
CookiesRefresh.Location = New Point(441, 111)
CookiesRefresh.Margin = New Padding(3, 2, 3, 2)
CookiesRefresh.Name = "CookiesRefresh"
CookiesRefresh.Size = New Size(22, 21)
CookiesRefresh.TabIndex = 27
CookiesRefresh.Text = "🔃"
CookiesRefresh.UseVisualStyleBackColor = True
'
' Label8
'
Label8.AutoSize = True
Label8.Location = New Point(213, 114)
Label8.Name = "Label8"
Label8.Size = New Size(103, 15)
Label8.TabIndex = 12
Label8.Text = "Cookie File Name:"
'
' EnglishTranslationCheckBox
'
EnglishTranslationCheckBox.AutoSize = True
EnglishTranslationCheckBox.CheckAlign = ContentAlignment.TopLeft
EnglishTranslationCheckBox.Location = New Point(323, 61)
EnglishTranslationCheckBox.Margin = New Padding(3, 2, 3, 2)
EnglishTranslationCheckBox.Name = "EnglishTranslationCheckBox"
EnglishTranslationCheckBox.Size = New Size(152, 19)
EnglishTranslationCheckBox.TabIndex = 8
EnglishTranslationCheckBox.Text = "Enable English Captions"
EnglishTranslationCheckBox.UseVisualStyleBackColor = True
'
' SecondaryTranslation
'
SecondaryTranslation.AutoSize = True
SecondaryTranslation.Location = New Point(323, 111)
SecondaryTranslation.Margin = New Padding(3, 2, 3, 2)
SecondaryTranslation.Name = "SecondaryTranslation"
SecondaryTranslation.Size = New Size(119, 19)
SecondaryTranslation.TabIndex = 5
SecondaryTranslation.Text = "Enable Secondary"
SecondaryTranslation.UseVisualStyleBackColor = True
'
' Label5
'
Label5.AutoSize = True
Label5.Location = New Point(192, 87)
Label5.Name = "Label5"
Label5.Size = New Size(125, 15)
Label5.TabIndex = 4
Label5.Text = "Secondary Translation:"
'
' SecondaryTranslationLanguage
'
SecondaryTranslationLanguage.AutoCompleteMode = AutoCompleteMode.SuggestAppend
SecondaryTranslationLanguage.AutoCompleteSource = AutoCompleteSource.ListItems
SecondaryTranslationLanguage.DisplayMember = "1"
SecondaryTranslationLanguage.FormattingEnabled = True
SecondaryTranslationLanguage.Items.AddRange(New Object() {"Afrikaans", "Albanian", "Amharic", "Arabic", "Armenian", "Assamese", "Azerbaijani", "Bashkir", "Basque", "Belarusian", "Bengali", "Bosnian", "Breton", "Bulgarian", "Burmese", "Castilian", "Catalan", "Chinese", "Croatian", "Czech", "Danish", "Dutch", "English", "Estonian", "Faroese", "Finnish", "Flemish", "French", "Galician", "Georgian", "German", "Greek", "Gujarati", "Haitian", "Haitian Creole", "Hausa", "Hawaiian", "Hebrew", "Hindi", "Hungarian", "Icelandic", "Indonesian", "Italian", "Japanese", "Javanese", "Kannada", "Kazakh", "Khmer", "Korean", "Lao", "Latin", "Latvian", "Letzeburgesch", "Lingala", "Lithuanian", "Luxembourgish", "Macedonian", "Malagasy", "Malay", "Malayalam", "Maltese", "Maori", "Marathi", "Moldavian", "Moldovan", "Mongolian", "Myanmar", "Nepali", "Norwegian", "Nynorsk", "Occitan", "Panjabi", "Pashto", "Persian", "Polish", "Portuguese", "Punjabi", "Pushto", "Romanian", "Russian", "Sanskrit", "Serbian", "Shona", "Sindhi", "Sinhala", "Sinhalese", "Slovak", "Slovenian", "Somali", "Spanish", "Sundanese", "Swahili", "Swedish", "Tagalog", "Tajik", "Tamil", "Tatar", "Telugu", "Thai", "Tibetan", "Turkish", "Turkmen", "Ukrainian", "Urdu", "Uzbek", "Valencian", "Vietnamese", "Welsh", "Yiddish", "Yoruba"})
SecondaryTranslationLanguage.Location = New Point(323, 84)
SecondaryTranslationLanguage.Margin = New Padding(3, 2, 3, 2)
SecondaryTranslationLanguage.Name = "SecondaryTranslationLanguage"
SecondaryTranslationLanguage.Size = New Size(172, 23)
SecondaryTranslationLanguage.Sorted = True
SecondaryTranslationLanguage.TabIndex = 3
SecondaryTranslationLanguage.Text = "French"
'
' StreamLanguage
'
StreamLanguage.AutoCompleteMode = AutoCompleteMode.SuggestAppend
StreamLanguage.AutoCompleteSource = AutoCompleteSource.ListItems
StreamLanguage.DisplayMember = "1"
StreamLanguage.FormattingEnabled = True
StreamLanguage.Items.AddRange(New Object() {"--Auto Detect--", "Afrikaans", "Albanian", "Amharic", "Arabic", "Armenian", "Assamese", "Azerbaijani", "Bashkir", "Basque", "Belarusian", "Bengali", "Bosnian", "Breton", "Bulgarian", "Burmese", "Castilian", "Catalan", "Chinese", "Croatian", "Czech", "Danish", "Dutch", "English", "Estonian", "Faroese", "Finnish", "Flemish", "French", "Galician", "Georgian", "German", "Greek", "Gujarati", "Haitian", "Haitian Creole", "Hausa", "Hawaiian", "Hebrew", "Hindi", "Hungarian", "Icelandic", "Indonesian", "Italian", "Japanese", "Javanese", "Kannada", "Kazakh", "Khmer", "Korean", "Lao", "Latin", "Latvian", "Letzeburgesch", "Lingala", "Lithuanian", "Luxembourgish", "Macedonian", "Malagasy", "Malay", "Malayalam", "Maltese", "Maori", "Marathi", "Moldavian", "Moldovan", "Mongolian", "Myanmar", "Nepali", "Norwegian", "Nynorsk", "Occitan", "Panjabi", "Pashto", "Persian", "Polish", "Portuguese", "Punjabi", "Pushto", "Romanian", "Russian", "Sanskrit", "Serbian", "Shona", "Sindhi", "Sinhala", "Sinhalese", "Slovak", "Slovenian", "Somali", "Spanish", "Sundanese", "Swahili", "Swedish", "Tagalog", "Tajik", "Tamil", "Tatar", "Telugu", "Thai", "Tibetan", "Turkish", "Turkmen", "Ukrainian", "Urdu", "Uzbek", "Valencian", "Vietnamese", "Welsh", "Yiddish", "Yoruba"})
StreamLanguage.Location = New Point(323, 34)
StreamLanguage.Margin = New Padding(3, 2, 3, 2)
StreamLanguage.Name = "StreamLanguage"
StreamLanguage.Size = New Size(172, 23)
StreamLanguage.Sorted = True
StreamLanguage.TabIndex = 3
StreamLanguage.Text = "Japanese"
ToolTip1.SetToolTip(StreamLanguage, "English")
'
' Label4
'
Label4.AutoSize = True
Label4.Location = New Point(216, 37)
Label4.Name = "Label4"
Label4.Size = New Size(101, 15)
Label4.TabIndex = 2
Label4.Text = "Source Language:"
'
' GroupBox3
'
GroupBox3.Controls.Add(CPU_RadioButton)
GroupBox3.Controls.Add(CUDA_RadioButton)
GroupBox3.ForeColor = Color.FloralWhite
GroupBox3.Location = New Point(6, 7)
GroupBox3.Margin = New Padding(3, 2, 3, 2)
GroupBox3.Name = "GroupBox3"
GroupBox3.Padding = New Padding(3, 2, 3, 2)
GroupBox3.Size = New Size(155, 70)
GroupBox3.TabIndex = 9
GroupBox3.TabStop = False
GroupBox3.Text = "Processing Device"
'
' CPU_RadioButton
'
CPU_RadioButton.AutoSize = True
CPU_RadioButton.Location = New Point(5, 42)
CPU_RadioButton.Margin = New Padding(3, 2, 3, 2)
CPU_RadioButton.Name = "CPU_RadioButton"
CPU_RadioButton.Size = New Size(104, 19)
CPU_RadioButton.TabIndex = 0
CPU_RadioButton.Text = "CPU (SLOWER)"
CPU_RadioButton.UseVisualStyleBackColor = True
'
' CUDA_RadioButton
'
CUDA_RadioButton.AutoSize = True
CUDA_RadioButton.Checked = True
CUDA_RadioButton.Location = New Point(5, 20)
CUDA_RadioButton.Margin = New Padding(3, 2, 3, 2)
CUDA_RadioButton.Name = "CUDA_RadioButton"
CUDA_RadioButton.Size = New Size(140, 19)
CUDA_RadioButton.TabIndex = 0
CUDA_RadioButton.TabStop = True
CUDA_RadioButton.Text = "CUDA (GPU) (FASTER)"
CUDA_RadioButton.UseVisualStyleBackColor = True
'
' OpenScriptDiag
'
OpenScriptDiag.FileName = "transcribe_audio.exe"
OpenScriptDiag.Filter = "EXE (*.exe)|*.exe|py Files (*.py)|*.py"
'
' ConfigTextBox
'
ConfigTextBox.BackColor = Color.SlateBlue
ConfigTextBox.BorderStyle = BorderStyle.FixedSingle
ConfigTextBox.Font = New Font("Segoe UI", 13F)
ConfigTextBox.Location = New Point(153, 170)
ConfigTextBox.Margin = New Padding(3, 2, 3, 2)
ConfigTextBox.Multiline = True
ConfigTextBox.Name = "ConfigTextBox"
ConfigTextBox.ReadOnly = True
ConfigTextBox.RightToLeft = RightToLeft.No
ConfigTextBox.ScrollBars = ScrollBars.Vertical
ConfigTextBox.Size = New Size(467, 453)
ConfigTextBox.TabIndex = 10
ConfigTextBox.Visible = False
'
' GenerateConfigButton
'
GenerateConfigButton.FlatAppearance.MouseDownBackColor = Color.Indigo
GenerateConfigButton.FlatAppearance.MouseOverBackColor = Color.SlateBlue
GenerateConfigButton.FlatStyle = FlatStyle.Popup
GenerateConfigButton.Font = New Font("Segoe UI", 13F)
GenerateConfigButton.Location = New Point(154, 627)
GenerateConfigButton.Margin = New Padding(3, 2, 3, 2)
GenerateConfigButton.Name = "GenerateConfigButton"
GenerateConfigButton.Size = New Size(150, 32)
GenerateConfigButton.TabIndex = 11
GenerateConfigButton.Text = "Generate Config"
GenerateConfigButton.UseVisualStyleBackColor = True
'
' PortNumber
'
PortNumber.Location = New Point(91, 20)
PortNumber.Margin = New Padding(3, 2, 3, 2)
PortNumber.Maximum = New Decimal(New Integer() {65535, 0, 0, 0})
PortNumber.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
PortNumber.Name = "PortNumber"
PortNumber.Size = New Size(58, 23)
PortNumber.TabIndex = 15
PortNumber.Value = New Decimal(New Integer() {8000, 0, 0, 0})
'
' WebServerButton
'
WebServerButton.AutoSize = True
WebServerButton.ForeColor = Color.FloralWhite
WebServerButton.Location = New Point(72, 0)
WebServerButton.Margin = New Padding(3, 2, 3, 2)
WebServerButton.Name = "WebServerButton"
WebServerButton.Size = New Size(61, 19)
WebServerButton.TabIndex = 16
WebServerButton.Text = "Enable"
WebServerButton.UseVisualStyleBackColor = True
'
' Label10
'
Label10.AutoSize = True
Label10.Location = New Point(15, 22)
Label10.Name = "Label10"
Label10.Size = New Size(63, 15)
Label10.TabIndex = 17
Label10.Text = "HTTP Port:"
'
' GroupBox4
'
GroupBox4.Controls.Add(ServerIP)
GroupBox4.Controls.Add(Label29)
GroupBox4.Controls.Add(HTTPSPortNumber)
GroupBox4.Controls.Add(Label28)
GroupBox4.Controls.Add(Label10)
GroupBox4.Controls.Add(PortNumber)
GroupBox4.Controls.Add(WebServerButton)
GroupBox4.ForeColor = Color.FloralWhite
GroupBox4.Location = New Point(167, 7)
GroupBox4.Margin = New Padding(3, 2, 3, 2)
GroupBox4.Name = "GroupBox4"
GroupBox4.Padding = New Padding(3, 2, 3, 2)
GroupBox4.Size = New Size(347, 85)
GroupBox4.TabIndex = 18
GroupBox4.TabStop = False
GroupBox4.Text = "Web Server"
'
' Label29
'
Label29.AutoSize = True
Label29.Location = New Point(155, 22)
Label29.Name = "Label29"
Label29.Size = New Size(58, 15)
Label29.TabIndex = 20
Label29.Text = "Server IP: "
'
' HTTPSPortNumber
'
HTTPSPortNumber.Location = New Point(91, 53)
HTTPSPortNumber.Margin = New Padding(3, 2, 3, 2)
HTTPSPortNumber.Maximum = New Decimal(New Integer() {65535, 0, 0, 0})
HTTPSPortNumber.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
HTTPSPortNumber.Name = "HTTPSPortNumber"
HTTPSPortNumber.Size = New Size(58, 23)
HTTPSPortNumber.TabIndex = 19
HTTPSPortNumber.Value = New Decimal(New Integer() {8001, 0, 0, 0})
'
' Label28
'
Label28.AutoSize = True
Label28.Location = New Point(6, 55)
Label28.Name = "Label28"
Label28.Size = New Size(72, 15)
Label28.TabIndex = 18
Label28.Text = "HTTPS Port: "
'
' SettingsTabs
'
SettingsTabs.Appearance = TabAppearance.FlatButtons
SettingsTabs.Controls.Add(TabPage1)
SettingsTabs.Controls.Add(TabPage2)
SettingsTabs.Controls.Add(TabPage3)
SettingsTabs.Controls.Add(TabPage4)
SettingsTabs.Controls.Add(TabPage5)
SettingsTabs.HotTrack = True
SettingsTabs.Location = New Point(627, 6)
SettingsTabs.Margin = New Padding(3, 2, 3, 2)
SettingsTabs.Name = "SettingsTabs"
SettingsTabs.SelectedIndex = 0
SettingsTabs.Size = New Size(591, 576)
SettingsTabs.TabIndex = 19
'
' TabPage1
'
TabPage1.BackColor = Color.DarkSlateBlue
TabPage1.Controls.Add(SynthalinguaChan_IMG_2)
TabPage1.Controls.Add(GroupBox2)
TabPage1.Location = New Point(4, 27)
TabPage1.Margin = New Padding(3, 2, 3, 2)
TabPage1.Name = "TabPage1"
TabPage1.Padding = New Padding(3, 2, 3, 2)
TabPage1.Size = New Size(583, 545)
TabPage1.TabIndex = 0
TabPage1.Text = "Stream Mode Settings"
'
' SynthalinguaChan_IMG_2
'
SynthalinguaChan_IMG_2.Image = My.Resources.Resources.Synthalingua_Chan_02
SynthalinguaChan_IMG_2.Location = New Point(118, 359)
SynthalinguaChan_IMG_2.Name = "SynthalinguaChan_IMG_2"
SynthalinguaChan_IMG_2.Size = New Size(354, 181)
SynthalinguaChan_IMG_2.SizeMode = PictureBoxSizeMode.Zoom
SynthalinguaChan_IMG_2.TabIndex = 9
SynthalinguaChan_IMG_2.TabStop = False
'
' TabPage2
'
TabPage2.BackColor = Color.DarkSlateBlue
TabPage2.Controls.Add(SynthalinguaChan_IMG_3)
TabPage2.Controls.Add(mic_chunk_size)
TabPage2.Controls.Add(SetMicChunkSizeLbl)
TabPage2.Controls.Add(PhraseTimeOutCheckbox)
TabPage2.Controls.Add(RecordTimeOutCHeckBox)
TabPage2.Controls.Add(MicCaliCheckBox)
TabPage2.Controls.Add(MicEnCheckBox)
TabPage2.Controls.Add(microphone_id_button)
TabPage2.Controls.Add(SetMicLbl)
TabPage2.Controls.Add(MicID)
TabPage2.Controls.Add(PhraseTimeout)
TabPage2.Controls.Add(RecordTimeout)
TabPage2.Controls.Add(MicCaliTime)
TabPage2.Controls.Add(PhraseTimeOutlbl)
TabPage2.Controls.Add(EnThreshValue)
TabPage2.Controls.Add(RecordTimeoutLbl)
TabPage2.Controls.Add(MicCaliLbl)
TabPage2.Controls.Add(Energy_Threshold)
TabPage2.Location = New Point(4, 27)
TabPage2.Margin = New Padding(3, 2, 3, 2)
TabPage2.Name = "TabPage2"
TabPage2.Padding = New Padding(3, 2, 3, 2)
TabPage2.Size = New Size(583, 545)
TabPage2.TabIndex = 1
TabPage2.Text = "Microphone Settings"
'
' SynthalinguaChan_IMG_3
'
SynthalinguaChan_IMG_3.Image = My.Resources.Resources.Synthalingua_Chan_03
SynthalinguaChan_IMG_3.Location = New Point(366, 156)
SynthalinguaChan_IMG_3.Name = "SynthalinguaChan_IMG_3"
SynthalinguaChan_IMG_3.Size = New Size(211, 384)
SynthalinguaChan_IMG_3.SizeMode = PictureBoxSizeMode.Zoom
SynthalinguaChan_IMG_3.TabIndex = 27
SynthalinguaChan_IMG_3.TabStop = False
'
' mic_chunk_size
'
mic_chunk_size.Location = New Point(204, 136)
mic_chunk_size.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
mic_chunk_size.Name = "mic_chunk_size"
mic_chunk_size.Size = New Size(76, 23)
mic_chunk_size.TabIndex = 26
mic_chunk_size.Value = New Decimal(New Integer() {1, 0, 0, 0})
'
' SetMicChunkSizeLbl
'
SetMicChunkSizeLbl.AutoSize = True
SetMicChunkSizeLbl.Location = New Point(46, 138)
SetMicChunkSizeLbl.Name = "SetMicChunkSizeLbl"
SetMicChunkSizeLbl.Size = New Size(152, 15)
SetMicChunkSizeLbl.TabIndex = 25
SetMicChunkSizeLbl.Text = "Microphone Chunk Size (?):"
'
' PhraseTimeOutCheckbox
'
PhraseTimeOutCheckbox.AutoSize = True
PhraseTimeOutCheckbox.Location = New Point(285, 82)
PhraseTimeOutCheckbox.Margin = New Padding(3, 2, 3, 2)
PhraseTimeOutCheckbox.Name = "PhraseTimeOutCheckbox"
PhraseTimeOutCheckbox.Size = New Size(61, 19)
PhraseTimeOutCheckbox.TabIndex = 24
PhraseTimeOutCheckbox.Text = "Enable"
PhraseTimeOutCheckbox.UseVisualStyleBackColor = True
'
' RecordTimeOutCHeckBox
'
RecordTimeOutCHeckBox.AutoSize = True
RecordTimeOutCHeckBox.Location = New Point(285, 55)
RecordTimeOutCHeckBox.Margin = New Padding(3, 2, 3, 2)
RecordTimeOutCHeckBox.Name = "RecordTimeOutCHeckBox"
RecordTimeOutCHeckBox.Size = New Size(61, 19)
RecordTimeOutCHeckBox.TabIndex = 24
RecordTimeOutCHeckBox.Text = "Enable"
RecordTimeOutCHeckBox.UseVisualStyleBackColor = True
'
' MicCaliCheckBox
'
MicCaliCheckBox.AutoSize = True
MicCaliCheckBox.Location = New Point(285, 30)
MicCaliCheckBox.Margin = New Padding(3, 2, 3, 2)
MicCaliCheckBox.Name = "MicCaliCheckBox"
MicCaliCheckBox.Size = New Size(61, 19)
MicCaliCheckBox.TabIndex = 24
MicCaliCheckBox.Text = "Enable"
MicCaliCheckBox.UseVisualStyleBackColor = True
'
' MicEnCheckBox
'
MicEnCheckBox.AutoSize = True
MicEnCheckBox.Location = New Point(285, 5)
MicEnCheckBox.Margin = New Padding(3, 2, 3, 2)
MicEnCheckBox.Name = "MicEnCheckBox"
MicEnCheckBox.Size = New Size(61, 19)
MicEnCheckBox.TabIndex = 24
MicEnCheckBox.Text = "Enable"
MicEnCheckBox.UseVisualStyleBackColor = True
'
' microphone_id_button
'
microphone_id_button.FlatAppearance.MouseDownBackColor = Color.DarkSlateBlue
microphone_id_button.FlatAppearance.MouseOverBackColor = Color.DarkSlateBlue
microphone_id_button.FlatStyle = FlatStyle.Popup
microphone_id_button.Location = New Point(285, 106)
microphone_id_button.Margin = New Padding(3, 2, 3, 2)
microphone_id_button.Name = "microphone_id_button"
microphone_id_button.Size = New Size(82, 22)
microphone_id_button.TabIndex = 4
microphone_id_button.Text = "Get IDs"
microphone_id_button.UseVisualStyleBackColor = True
'
' SetMicLbl
'
SetMicLbl.AutoSize = True
SetMicLbl.Location = New Point(88, 110)
SetMicLbl.Name = "SetMicLbl"
SetMicLbl.Size = New Size(110, 15)
SetMicLbl.TabIndex = 3
SetMicLbl.Text = "Set Microphone (?):"
'
' MicID
'
MicID.Location = New Point(204, 108)
MicID.Margin = New Padding(3, 2, 3, 2)
MicID.Maximum = New Decimal(New Integer() {9999, 0, 0, 0})
MicID.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
MicID.Name = "MicID"
MicID.Size = New Size(76, 23)
MicID.TabIndex = 2
MicID.Value = New Decimal(New Integer() {1, 0, 0, 0})
'
' PhraseTimeout
'
PhraseTimeout.Location = New Point(204, 81)
PhraseTimeout.Margin = New Padding(3, 2, 3, 2)
PhraseTimeout.Maximum = New Decimal(New Integer() {120, 0, 0, 0})
PhraseTimeout.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
PhraseTimeout.Name = "PhraseTimeout"
PhraseTimeout.Size = New Size(76, 23)
PhraseTimeout.TabIndex = 2
PhraseTimeout.Value = New Decimal(New Integer() {5, 0, 0, 0})
'
' RecordTimeout
'
RecordTimeout.Location = New Point(204, 54)
RecordTimeout.Margin = New Padding(3, 2, 3, 2)
RecordTimeout.Maximum = New Decimal(New Integer() {10, 0, 0, 0})
RecordTimeout.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
RecordTimeout.Name = "RecordTimeout"
RecordTimeout.Size = New Size(76, 23)
RecordTimeout.TabIndex = 2
RecordTimeout.Value = New Decimal(New Integer() {5, 0, 0, 0})
'
' MicCaliTime