1
Fork 0
A simple fully-featured host for LV2 plugins (LADI project modifications)
Go to file
David Robillard 8c68a45152 Fix warnings in Qt build 2023-05-12 08:40:30 -04:00
.reuse Replace strict option with new meson warning level 2023-05-02 17:32:00 -04:00
LICENSES Use 0BSD for trivial "public domain intent" things 2022-09-08 15:44:18 -04:00
doc Remove Gtk2 interface 2022-12-11 15:12:21 -05:00
meson/suppressions Fix warnings in Qt build 2023-05-12 08:40:30 -04:00
src Remove old-style casts in C++ 2023-05-02 15:32:04 -04:00
subprojects Fix zix wrap 2022-11-19 05:44:59 -05:00
test Replace strict option with new meson warning level 2023-05-02 17:32:00 -04:00
.clang-format Build Qt moc output as a separate object 2022-05-30 16:17:38 -04:00
.clang-tidy Suppress/fix new warnings in clang-tidy 15 2023-02-03 14:42:03 -05:00
.clant.json Clean up includes 2020-12-14 15:44:58 +01:00
.gitignore Ignore zix subproject 2022-11-19 17:35:13 -05:00
AUTHORS Add Gtk plugin selector UI 2022-05-27 18:30:20 -04:00
COPYING Use standard ISC license text 2022-08-22 17:48:12 -04:00
INSTALL.md Update installation instructions for consistency 2022-08-22 12:26:06 -04:00
NEWS Add missing short versions of command line options 2022-12-11 16:52:21 -05:00
README.md Remove Gtkmm interface 2022-05-27 19:20:50 -04:00
jalv.desktop.in Add French translation to desktop file 2022-05-28 09:42:22 -04:00
jalv.ttl Add project metadata 2022-08-17 13:51:25 -04:00
meson.build Replace strict option with new meson warning level 2023-05-02 17:32:00 -04:00
meson_options.txt Replace strict option with new meson warning level 2023-05-02 17:32:00 -04:00

README.md

Jalv

Jalv (JAck LV2) is a simple host for LV2 plugins. It runs a plugin, and exposes the plugin ports to the system, essentially making the plugin an application. For more information, see http://drobilla.net/software/jalv.

Jalv can be built to run on JACK, where plugin ports are exposed directly as JACK ports, or via PortAudio, where the plugin is connected to the system inputs and outputs.

Jalv is particularly useful as a simple test host for plugin development and testing. It runs plugins from the command line with no user interaction, is light enough to run with tools like sanitizers or valgrind, and is capable of dumping all communication between the plugin and its UI in a human readable format. Plugin UIs can be tested in different host toolkits by using different executables: jalv, jalv.gtk, jalv.gtk3, and jalv.qt5.

-- David Robillard d@drobilla.net