1EQ10Q LV2 Plugin
2-----------------
3
4EQ10Q is an audio plugin over the LV2 standard (http://lv2plug.in) implementing
5a powerfull and flexible parametric equalizer.
6Eq10q equalizer plugin includes a parametric equalization with diferent filter types
7like peaking, HPF, LPF, Shelving and Notch
8with IIR algorithms and a nice GUI displaying the equalization curve.
9
10At the moment we have implemented second order biquadratic filters (Peaking, Low Shelving,
11High Shelving and Notch), and configurable order (1, 2, 3, 4) HPF and LPF filters.
12All with IIR algorithms. And a GUI writed with Gtkmm (http://www.gtkmm.org) to control
13all the parameters and display the curve using plotmm (http://plotmm.sourceforge.net).
14The plugin is over LV2 standard and writed in C for the audio DSP and C++ for the GUI.
15
16EQ10Q is hosted at http://eq10q.sourceforge.net/
17Main developer: Pere Ràfols Soler (sapista2@gmail.com)
18
19Installation
20------------
21EQ10Q plugin will be installed into /usr/local/lib/lv2 as default.
22
23Before install EQ10Q you must resolve all required libraries:
24  - G++ compiler
25  - cmake
26  - pkg-config
27  - LV2 Headers
28  - Gtkmm >= 2.4
29  - FFTW3
30
31To install EQ10Q in your system open a terminal, go to EQ10Q top level folder and just type:
32
33  cmake ./
34
35If cmake configures successfully the build enviorment then type:
36
37  make
38
39If make finish successfully type the following as root
40
41  make install
42
43To run EQ10Q you need a LV2 host. I recomend Ardour (<= 2.8.3) http://ardour.org
44
45Uninstallation
46--------------
47Remove the EQ10Q directory, as default /usr/local/lib/lv2/sapistaEQv2.lv2
48
49
50Copyright
51---------
52
53 *   Copyright (C) 2009 by Pere Ràfols Soler                               *
54 *   sapista2@gmail.com                                                    *
55 *                                                                         *
56 *   This program is free software; you can redistribute it and/or modify  *
57 *   it under the terms of the GNU General Public License as published by  *
58 *   the Free Software Foundation; either version 2 of the License, or     *
59 *   (at your option) any later version.                                   *
60 *                                                                         *
61 *   This program is distributed in the hope that it will be useful,       *
62 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
63 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
64 *   GNU General Public License for more details.
65