diff options
-rw-r--r-- | AUTHORS | 4 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | README | 29 | ||||
-rw-r--r-- | wscript | 4 |
4 files changed, 31 insertions, 12 deletions
@@ -1,4 +1,4 @@ -These plugins were written by Fons Adriaensen <fons@kokkinizita.net>, -originally as LADSPA plugins. All credit for their quality belongs to him. +These plugins were written by Fons Adriaensen <fons@linuxaudio.org>, originally +as LADSPA plugins. All credit for their sonic quality belongs to him. This LV2 port is by David Robillard <d@drobilla.net>.
\ No newline at end of file @@ -0,0 +1,6 @@ +fomp (1.0.0) stable; + + * Initial release + + -- David Robillard <d@drobilla.net> Sat, 27 Oct 2012 16:54:00 -0400 + @@ -1,10 +1,23 @@ -This is an LV2 port of the MCP and VCO LADSPA plugins by Fons Adriaensen. +FOMP +---- -It features more precise plugin descriptions (in particular, CV ports are -distinct from audio ports, and unit metadata is available), but otherwise -remains faithful to the originals. The code is identical to the original -LADSPA versions except for some type changes which should not affect output. -These plugins should be sonically indestinguishable from the originals. +This is an LV2 port of the MCP, VCO, FIL, and WAH plugins by Fons Adriaensen. -Documentation for each plugin is included in the plugin's data file, and should -be available as online help in the host interface.
\ No newline at end of file +There are 13 plugins in total: 1 auto-wah, 1 EQ, 3 chorus, 5 filters, and 3 +oscillators. + +The plugin implementations are identical to their LADSPA forebears, except the +primary frequency port of oscillators and filters has been converted to Hz to +facilitate use in any host without assuming the hidden tuning frequency of +AlsaModularSynth. All other frequency ports remain as they were, using octaves +for faithful Moog-like modulation. + +Aside from that, the main benefit of these LV2 ports is improved metadata: CV +ports are distinguishable from audio ports, controls have units where +applicable, documentation is built-in for display in host UIs, and so on. + +The oscillators and filters are mainly useful in modular synthesizers, but +since CV ports are distinct from audio ports, they should work fine in +non-modular hosts as well. + + -- David Robillard <d@drobilla.net> @@ -4,7 +4,7 @@ import shutil import waflib.extras.autowaf as autowaf # Version of this package (even if built as a child) -FOMP_VERSION = '0.0.0' +FOMP_VERSION = '1.0.0' # Mandatory waf variables APPNAME = 'fomp' # Package name for waf dist @@ -31,7 +31,7 @@ def configure(conf): conf.env.pluginlib_PATTERN = pat conf.env.pluginlib_EXT = pat[pat.rfind('.'):] - autowaf.display_msg(conf, "LV2 bundle directory", + autowaf.display_msg(conf, 'LV2 bundle directory', conf.env.LV2DIR) print('') |