: There are 2 ways to make a graphic EQ
:
: 1 Implement a set of hi/lowpass-filters. These split the signal in 2: a part with the higher tones, and a part with the lower tones. If you want a 5-band EQlike on 50, 200, 800, 3200 & 12800 Hz, you implement a filter on 6400 Hz (log-center of 3200 & 12800), boost the upper part with the level for 12800 Hz, and send the lower part to a 1600 Hz filter, boost the upper part,...
:
: This technique is pretty fast (if you use the right filters) but the noise-level gets boosted every stage.
:
: 2 Implement a set of bandpassfilters, 1 low- & 1 highpassfilter. Apply them on the source signal if they are active (Gain != 0db)
:
: This technique is also reasonable fast, the noise-level stays low, but the filters are hard to implement since they do not fit each other automatically.
:
: 3 You could do an FFT & IFFT: Dont ! This is slow and not easy to implement.
:
: : I am wondering if anyone out there has atempted to implement a Graphic EQ, like the one in WinAMP, with the coloured bars?
: :
: : Thnx in advance.
: :
: :
: :
:
:
Yes I am trying to implement one using FFT & IFFT in Visual Basic!!!