Skip to content

OpenDAWN/mcfx

 
 

Repository files navigation

mcfx - multichannel cross plattform audio plug-in suite

license

mcfx is free software and licensed under the GNU General Public License version 3 (GPLv3).

Please note that Steinbergs VST SDK is not free in the sense of the Free Software Foundation, but is the de facto standard for creating audio plug-ins. Don't use the VST version of this software if you are not comfortable with mixing free and non-free code.

prerequisites for building

Install LINUX Libraries (Debian, Ubuntu): $ sudo apt-get install libasound-dev libfreetype6-dev libgl1-mesa-dev libx11-dev libxext-dev libxinerama-dev libxcursor-dev freeglut3-dev libxmu-dev libxi-dev

howto build yourself:

copy the Steinberg VST 2.4 SDK into the folder mcfx/vstsdk2.4 (do to legal reasons those can not be included here)

  • use cmake gui or cmake/ccmake from terminal:

  • NUM_CHANNELS adjusts the number of input/output channels

TERMINAL:

  • create a folder in the mcfx folder eg. BUILD

mcfx/BUILD> $ ccmake ..

  • adjust NUM_CHANNELS

then mcfx/BUILD> $ make

  • find the binaries in the mcfx/BUILD/_bin folder and copy to system VST folder

VST installation folders:

  • MacOSX: /Library/Audio/Plug-Ins/VST or ~/Library/Audio/Plug-Ins/VST
  • Windows: eg. C:\Programm Files\Steinberg\VstPlugins
  • Linux: /usr/lib/lxvst or /usr/local/lib/lxvst

plug-ins explained:

mcfx_convolver

multichannel convolution matrix loads configuration files (compatible to jconvolver .conf files) searches for configuration file in following folders: * Windows 7,8: C:\Users\username\AppData\Roaming\mcfx\convolver_presets
* MacOS: ~/Library/mcfx/convolver_presets/ * Linux: ~/mcfx/convolver_presets/

mcfx_delay

delay each channel about the same time (maximum delay time in seconds is a compile time flag (default 0.5s): MAX_DELAYTIME_S)

mcfx_filter

filter each channel with the same low/high cut, peak filter and high/low shelf filter settings

low and high pass: 2nd order butterworth filter or 2x 2nd order butterworth cascaded (resulting in linkwitz riley characteristic) for use as x-over network plus 2x parametric filter +- 18dB plus low and high shelf filters +- 18dB

mcfx_gain_delay

set different delay time and gain setting for each channel (good for multispeaker calibration) the GUI allows to paste a list of float gain and delay values from the clipboard with semicolon, comma, newline, tab or space separated. maximum delay time in seconds is a compile time flag (MAX_DELAYTIME_S)

mcfx_meter

multichannel level meter with RMS, peak and peak hold

changelog:

  • 0.3.3 (2015-07-19) - performance improvements for mcfx_convolver _

  • 0.3.2 (2014-12-28) - audiomulch compatibility, gui for mcfx_gain_delay with paste from clipboard functionality, mcfx_meter added scale offset

  • 0.3.1 (2014-06-16) - fixed vst id for bidule compatibility

  • 0.3 (2014-03-15) - added mcfx_convolver

  • 0.2 (2014-02-25) - removed some license incompatible code, juce update

  • 0.1 (2014-01-10) - first release


(C) 2013-2015 Matthias Kronlachner m.kronlachner@gmail.com

About

multichannel cross plattform audio plug-in suite

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 62.2%
  • C 33.6%
  • Objective-C++ 3.3%
  • Objective-C 0.6%
  • Java 0.2%
  • CMake 0.1%