Audio::LADSPA 0.018 review

Download
by rbytes.net on

Implements a LADSPA 1.1 host. SYNOPSIS use Audio::LADSPA; for my $class (Audio::LADSPA->plugins) { print "t

License: Perl Artistic License
File size: 80K
Developer: Joost Diepenmaat
0 stars award from rbytes.net

Implements a LADSPA 1.1 host.

SYNOPSIS

use Audio::LADSPA;

for my $class (Audio::LADSPA->plugins) {
print "t",$class->name," (",$class->id,"/",$class->label,")";
}

LADSPA plugins are objects in shared libraries that can generate or transform audio signals (like VST or Direct-X plugins on Mac and Win32 systems). Most of the existing LADSPA plugins are pretty low-level compared to VST plugins (you get seperate oscilator, ADSR and delay plugins instead of "complete" virtual synthesizers etc). See also http://www.ladspa.org/

With these modules you can create a LADSPA host, which can load the plugins, query their capabilities, connect them together in a network, and run audio streams through them.

The LADSPA API was developed for linux but should be platform independent, so you might be able to compile these modules and the nessisary plugins on win32 systems (please let me know if it works or not).

Requirements:
Perl

Audio::LADSPA 0.018 keywords