forked from timschneeb/JDSP4Linux-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.ui
executable file
·2718 lines (2718 loc) · 96.5 KB
/
mainwindow.ui
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
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>MainWindow</class>
<widget class="QMainWindow" name="MainWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>624</width>
<height>346</height>
</rect>
</property>
<property name="minimumSize">
<size>
<width>624</width>
<height>346</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>750</width>
<height>346</height>
</size>
</property>
<property name="windowTitle">
<string>JDSP4Linux GUI</string>
</property>
<property name="windowIcon">
<iconset resource="resources.qrc">
<normaloff>:/icons/icon.png</normaloff>:/icons/icon.png</iconset>
</property>
<property name="tabShape">
<enum>QTabWidget::Rounded</enum>
</property>
<widget class="QWidget" name="centralWidget">
<layout class="QGridLayout" name="gridLayout">
<item row="1" column="0">
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QPushButton" name="cpreset">
<property name="minimumSize">
<size>
<width>30</width>
<height>25</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>30</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Custom Presets</string>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Custom Presets</span></p><p>Manage custom presets</p></body></html></string>
</property>
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icons/queue.svg</normaloff>:/icons/queue.svg</iconset>
</property>
<property name="iconSize">
<size>
<width>15</width>
<height>15</height>
</size>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="set">
<property name="minimumSize">
<size>
<width>30</width>
<height>25</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>30</width>
<height>16777215</height>
</size>
</property>
<property name="toolTip">
<string>Settings</string>
</property>
<property name="statusTip">
<string/>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Settings</span></p><p>Configure this UI</p></body></html></string>
</property>
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icons/settings.svg</normaloff>:/icons/settings.svg</iconset>
</property>
<property name="iconSize">
<size>
<width>16</width>
<height>16</height>
</size>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="toolButton">
<property name="minimumSize">
<size>
<width>30</width>
<height>25</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>30</width>
<height>16777215</height>
</size>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Other</span></p><p>Load and save the currently active config, reload JDSP and enable context help.</p></body></html></string>
</property>
<property name="text">
<string>...</string>
</property>
<property name="icon">
<iconset resource="resources.qrc">
<normaloff>:/icons/menu.svg</normaloff>:/icons/menu.svg</iconset>
</property>
<property name="iconSize">
<size>
<width>16</width>
<height>16</height>
</size>
</property>
<property name="popupMode">
<enum>QToolButton::InstantPopup</enum>
</property>
<property name="autoRaise">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="disableFX">
<property name="minimumSize">
<size>
<width>88</width>
<height>25</height>
</size>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Master Power</span></p><p>This option defines whether to enable JDSP sound effects, also known as main switch.</p></body></html></string>
</property>
<property name="text">
<string>Disable FX</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="info">
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="reset">
<property name="minimumSize">
<size>
<width>0</width>
<height>25</height>
</size>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Reset</span></p><p>Resets all properties to default.</p></body></html></string>
</property>
<property name="text">
<string>Reset</string>
</property>
<property name="icon">
<iconset theme="ok">
<normaloff>.</normaloff>.</iconset>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="apply">
<property name="minimumSize">
<size>
<width>0</width>
<height>25</height>
</size>
</property>
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Apply</span></p><p>Applies current configuration and reloads JDSP.</p></body></html></string>
</property>
<property name="text">
<string>Apply</string>
</property>
<property name="icon">
<iconset theme="ok">
<normaloff>.</normaloff>.</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item row="0" column="0">
<widget class="QTabWidget" name="tabHost">
<property name="tabShape">
<enum>QTabWidget::Rounded</enum>
</property>
<property name="currentIndex">
<number>0</number>
</property>
<widget class="QWidget" name="bass">
<property name="toolTipDuration">
<number>0</number>
</property>
<attribute name="title">
<string>Bass/Misc</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<layout class="QHBoxLayout" name="bass_lay">
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<layout class="QVBoxLayout" name="bass_left">
<item>
<widget class="QGroupBox" name="bassboost">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Bass Boost</span></p><p>2048/4096 order FIR linear phase bass boost</p><p>Filtering is done on a convolution basis. When the user changes the bass boost parameter, the engine will compute a new low pass filter (with gain) impulse response using firls, a function ported from Matlab.</p><p><span style=" font-weight:600;">Bass Strength:</span> Recommended value between 0 and 1200</p></body></html></string>
</property>
<property name="title">
<string>Bass Boost</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_7">
<item>
<layout class="QVBoxLayout" name="verticalLayout_3">
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
<item>
<widget class="QLabel" name="bassmode_label">
<property name="text">
<string>Filtertype</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="bassfiltertype">
<property name="maximumSize">
<size>
<width>162</width>
<height>16777215</height>
</size>
</property>
<item>
<property name="text">
<string>Linear phase 2049 taps low pass filter</string>
</property>
</item>
<item>
<property name="text">
<string>Linear phase 4096 taps low pass filter</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QLabel" name="bassgain_label">
<property name="text">
<string>Strength</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="bassstrength">
<property name="toolTipDuration">
<number>-1</number>
</property>
<property name="minimum">
<number>0</number>
</property>
<property name="maximum">
<number>2000</number>
</property>
<property name="value">
<number>0</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="invertedControls">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="bassfreq_label">
<property name="text">
<string>Cutoff Frequency</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="bassfreq">
<property name="minimum">
<number>30</number>
</property>
<property name="maximum">
<number>300</number>
</property>
<property name="value">
<number>30</number>
</property>
<property name="tracking">
<bool>true</bool>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="invertedControls">
<bool>false</bool>
</property>
<property name="tickPosition">
<enum>QSlider::NoTicks</enum>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_3">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>30</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<layout class="QVBoxLayout" name="bass_right">
<item>
<widget class="QGroupBox" name="analog">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Analog Modelling (12AX7)</span></p><p>Vacuum tube modelling</p><p>Analog Modelling works as a vacuum tube amplifier, which was designed by ZamAudio. The tube they used to model is a 12AX7 double triode. They also provide a final stage of the tonestack control, it makes the sound more rich. However, the major parameter is the amplifier preamp (this is how even ordered harmonic is generated), but this parameter has been limited at a maximum of 12000 (=12 on android). Louder volume will generate more harmonics and the internal amplifier will tend to clip the audio. The analog amplifier was built from a real mathematical model, most notably is nonlinearity of vacuum tube. </p></body></html></string>
</property>
<property name="title">
<string>Analog Modelling</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<widget class="QLabel" name="label_3">
<property name="text">
<string>Preamp</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="analog_tubedrive">
<property name="maximum">
<number>12000</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>2</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QGroupBox" name="limiter">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Limiter</span></p><p>Mainly used to dynamically control the audio volume.</p></body></html></string>
</property>
<property name="title">
<string>Limiter</string>
</property>
<property name="checkable">
<bool>false</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_8">
<item>
<layout class="QFormLayout" name="formLayout_4">
<property name="horizontalSpacing">
<number>18</number>
</property>
<item row="0" column="0">
<widget class="QLabel" name="vclvl_label">
<property name="text">
<string>Threshold</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSlider" name="limthreshold">
<property name="minimum">
<number>-80</number>
</property>
<property name="maximum">
<number>0</number>
</property>
<property name="value">
<number>0</number>
</property>
<property name="tracking">
<bool>true</bool>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="invertedControls">
<bool>false</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Release</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QSlider" name="limrelease">
<property name="minimum">
<number>2</number>
</property>
<property name="maximum">
<number>2000</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>30</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QWidget" name="surround">
<attribute name="title">
<string>Sound Positioning</string>
</attribute>
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<layout class="QVBoxLayout" name="verticalLayout_14">
<property name="rightMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="stereowidener">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Stereo widener</span></p><p>The Mid channel is the center of a stereo image. When the Mid channel is boosted, the listener perceives a more centered (mono) sound to the audio.</p><p>The Side channel is the edges of a stereo image. When the Side channel is boosted, the listener perceives a more spacious (wider) sound to the audio.</p></body></html></string>
</property>
<property name="title">
<string>Stereo widener</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout_13">
<property name="spacing">
<number>6</number>
</property>
<property name="topMargin">
<number>9</number>
</property>
<property name="bottomMargin">
<number>11</number>
</property>
<item>
<widget class="QLabel" name="roomsize_label">
<property name="text">
<string>Preset</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="stereowide_preset">
<item>
<property name="text">
<string>...</string>
</property>
</item>
<item>
<property name="text">
<string>A Bit</string>
</property>
</item>
<item>
<property name="text">
<string>Slight</string>
</property>
</item>
<item>
<property name="text">
<string>Moderate</string>
</property>
</item>
<item>
<property name="text">
<string>High</string>
</property>
</item>
<item>
<property name="text">
<string>Super</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QLabel" name="label_10">
<property name="text">
<string>Side Gain</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="stereowide_s">
<property name="maximum">
<number>5000</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_9">
<property name="text">
<string>Mid Gain</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="stereowide_m">
<property name="maximum">
<number>5000</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_6">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>10</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout_10">
<property name="spacing">
<number>6</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QGroupBox" name="bs2b">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-weight:600; text-decoration: underline;">Bauer stereophonic-to-binaural DSP</span></p><p>A typical stereo records are being made to listen by speakers. That is a sound engineer makes the stereo mix to the adaptation of sound for listening of one channel by both ears. Therefore, you will be tired during a long time headphone listening more by a superstereo effect than by a poor design of headphones. What's missing in headphones is the sound going from each channel to the opposite ear, arriving a short time later for the extra distance traveled, and with a bit of high frequency roll-off for the shadowing effect of the head. And the time delay to the far ear is somewhat longer at low frequencies than at high frequencies. The Bauer stereophonic-to-binaural DSP (bs2b) is designed to improve headphone listening of stereo audio records.</p><p><span style=" font-style:italic;">Source: </span><a href="http://bs2b.sourceforge.net/"><span style=" font-style:italic; text-decoration: underline; color:#007af4;">http://bs2b.sourceforge.net/</span></a></p></body></html></string>
</property>
<property name="title">
<string>BS2B</string>
</property>
<property name="flat">
<bool>false</bool>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>false</bool>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="bottomMargin">
<number>12</number>
</property>
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>Preset</string>
</property>
</widget>
</item>
<item>
<widget class="QComboBox" name="bs2b_preset_cb">
<item>
<property name="text">
<string>...</string>
</property>
</item>
<item>
<property name="text">
<string>Default</string>
</property>
</item>
<item>
<property name="text">
<string>Chu Moy</string>
</property>
</item>
<item>
<property name="text">
<string>Jan Meier</string>
</property>
</item>
</widget>
</item>
<item>
<widget class="QLabel" name="label_12">
<property name="text">
<string>Crossfeed</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="bs2b_feed">
<property name="minimum">
<number>10</number>
</property>
<property name="maximum">
<number>150</number>
</property>
<property name="value">
<number>60</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label_11">
<property name="text">
<string>Cut frequency</string>
</property>
</widget>
</item>
<item>
<widget class="QSlider" name="bs2b_fcut">
<property name="minimum">
<number>300</number>
</property>
<property name="maximum">
<number>2000</number>
</property>
<property name="value">
<number>700</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<spacer name="verticalSpacer_5">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Expanding</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>11</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
<widget class="QWidget" name="rev">
<property name="whatsThis">
<string><html><head/><body><p><span style=" font-size:10pt; font-weight:600; text-decoration: underline;">Reverbation</span></p><p>Based on Progenitor2 (part of FreeVerb3)</p><p><span style=" font-weight:600; text-decoration: underline;">Decay</span></p><p>Decay is the time (in seconds) required for the reflections (reverberation) to die away. In most modern music production, reverb decay times of between one and three seconds are prevalent. A reverb setting with strong early reflections and a quick decay are a great way to create a stereo effect from a mono source. </p><p><span style=" font-weight:600; text-decoration: underline;">Delay</span></p><p>(Pre-)delay is the time (in milliseconds) between the end of the initial sound and the moment when the first reflections become audible. Imagine you’re back on that stage in a large music hall. This time you stand on the very edge of the stage and shout “Hello world!” toward the center of the hall. There will be a brief pause before you hear the first noticeable reflections of your voice, because the sound waves can travel much further before encountering a surface and bouncing back. (There are closer surfaces, of course—notably the floor and the ceiling just in front of the stage—but only a small part of the direct sound will go there, so those reflections will be much less noticeable.) Adjusting the predelay parameter on a reverb allows you to change the apparent size of the room without having to change the overall decay time. This will give your mix a little more transparency by leaving some space between the original sound and its reverb.</p><p><span style=" font-weight:600; text-decoration: underline;">Early Reflections</span></p><p>Early reflections are those that reach the listener a few milliseconds after the direct signal arrives. Your brain uses them to identify the size of the room you’re in. If you are trying to simulate a specific type of room, this control will be extremely important. This control allows you to set the level of the early reflections. The louder the early reflections, the smaller the room will seem.</p><p><span style=" font-weight:600; text-decoration: underline;">High and low frequency attenuation</span></p><p>These parameters (lowpass cutoff) restrict the frequencies going into the reverb. If your reverb sounds metallic, try reducing the highs starting at 4—8kHz. Having too many lows going through the reverb can produce a muddy, indistinct sound that takes focus away from the kick and bass. </p><p><span style=" font-weight:600; text-decoration: underline;">Wet Gain</span></p><p>Applies volume adjustment to the reverberation (&quot;wet&quot;) component in the mix. Increasing this value relative to the &quot;Dry Gain&quot; (below) increases the strength of the reverb.</p><p><span style=" font-weight:600; text-decoration: underline;">Dry Gain</span></p><p>Applies volume adjustment to the original (&quot;dry&quot;) audio in the mix. Increasing this value relative to the &quot;Wet Gain&quot; (above) reduces the strength of the reverb. If the Wet Gain and Dry Gain values are the same, then the mix of wet effect and dry audio to be output to the track will be made louder or softer by exactly this value.</p><p><span style=" font-weight:600; text-decoration: underline;">Width L/R mix</span></p><p>Sets the apparent &quot;width&quot; of the Reverb effect. Increasing this value applies more variation between left and right channels, creating a more &quot;spacious&quot; effect. When set at zero, the effect is applied independently to left and right channels.</p><p><span style=" font-style:italic;">Source: </span><a href="https://presonus.com"><span style=" font-style:italic; text-decoration: underline; color:#007af4;">https://presonus.com</span></a></p></body></html></string>
</property>
<attribute name="title">
<string>Reverb</string>
</attribute>
<layout class="QVBoxLayout" name="verticalLayout_15">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_3">
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_4"/>
</item>
<item>
<widget class="QCheckBox" name="reverb">
<property name="text">
<string>Enable Reverbation</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_2">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_4">
<property name="text">
<string>Presets</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeType">
<enum>QSizePolicy::Fixed</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>2</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QComboBox" name="roompresets">
<property name="maximumSize">
<size>
<width>133</width>
<height>16777215</height>
</size>
</property>
<property name="frame">
<bool>true</bool>
</property>
<item>
<property name="text">
<string>...</string>
</property>
</item>
<item>
<property name="text">
<string>Default</string>
</property>
</item>
<item>
<property name="text">
<string>Small hall 1</string>
</property>
</item>
<item>
<property name="text">
<string>Small hall 2</string>
</property>
</item>
<item>
<property name="text">
<string>Medium hall 1</string>
</property>
</item>
<item>
<property name="text">
<string>Medium hall 2</string>
</property>
</item>
<item>
<property name="text">
<string>Large hall 1</string>
</property>
</item>
<item>
<property name="text">
<string>Large hall 2</string>
</property>
</item>
<item>
<property name="text">
<string>Small room 1</string>
</property>
</item>
<item>
<property name="text">
<string>Small room 2</string>
</property>
</item>
<item>
<property name="text">
<string>Medium room 1</string>
</property>
</item>
<item>
<property name="text">
<string>Medium room 2</string>
</property>
</item>
<item>
<property name="text">
<string>Large room 1</string>
</property>
</item>
<item>
<property name="text">
<string>Large room 2</string>
</property>
</item>
<item>
<property name="text">
<string>Medium ER 1</string>
</property>
</item>
<item>
<property name="text">
<string>Medium ER 2</string>
</property>
</item>
<item>
<property name="text">
<string>Plate high</string>
</property>
</item>
<item>
<property name="text">
<string>Plate low</string>
</property>
</item>
<item>
<property name="text">
<string>Long reverb 1</string>
</property>
</item>
<item>
<property name="text">
<string>Long reverb 2</string>
</property>
</item>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_5">
<item>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
<widget class="QLabel" name="label_13">
<property name="text">
<string>Oversampling factor</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QSlider" name="rev_osf">
<property name="minimum">
<number>1</number>
</property>
<property name="maximum">
<number>4</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_15">
<property name="text">
<string>Early reflection factor</string>
</property>
</widget>
</item>