• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.kdev4/H11-Dec-2016-

dsp/H03-May-2022-830468

gui/H03-May-2022-11,3158,071

COPYINGH A D11-Dec-201634.3 KiB675553

READMEH A D11-Dec-20162.5 KiB6548

bassup.cH A D11-Dec-20164.5 KiB145100

bassup.ttlH A D11-Dec-20161.6 KiB5748

compressor.ttlH A D11-Dec-20165.1 KiB212191

compressor_sc.ttlH A D11-Dec-20165.3 KiB219198

compressor_stereo.ttlH A D11-Dec-20165.4 KiB225203

compressor_stereo_sc.ttlH A D11-Dec-20165.6 KiB231210

dynamics.cH A D11-Dec-201617.1 KiB564449

eq.cH A D11-Dec-201621.7 KiB656466

eq10q_code.kdev4H A D11-Dec-201667 54

eq10qm.ttlH A D11-Dec-201613.8 KiB676612

eq10qs.ttlH A D11-Dec-201614.4 KiB715646

eq1qm.ttlH A D11-Dec-20163.9 KiB175156

eq1qs.ttlH A D11-Dec-20164.6 KiB215190

eq4qm.ttlH A D11-Dec-20167.4 KiB346312

eq4qs.ttlH A D11-Dec-20168.1 KiB385346

eq6qm.ttlH A D11-Dec-20169.5 KiB456412

eq6qs.ttlH A D11-Dec-201610.2 KiB495446

gate.ttlH A D11-Dec-20164.6 KiB189171

gate_stereo.ttlH A D11-Dec-20164.8 KiB202183

lr2ms.ttlH A D11-Dec-20164.2 KiB181158

manifest.ttlH A D11-Dec-20161.6 KiB7153

midside_matrix.cH A D11-Dec-20169 KiB318228

ms2lr.ttlH A D11-Dec-20164.2 KiB181158

plugins_uris.hH A D11-Dec-20162.7 KiB4822

uris.hH A D11-Dec-20163.3 KiB6843

README

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