Getting Started

So you want to try out some OpenAV plugins? Great! Here’s how you can get started in the shortest amount of time! Basic Linux skills are assumed – you know how to open a “terminal” or “command prompt” – but nothing else! If you know that much, you should be able to follow this guide!

Getting Started

We’re going to use JACK, QJackCtl, and JALV to run the audio, and host a delay effect from the ArtyFX plugins. I’m assuming you can install Jack, Jalv, and ArtyFX using the Install guide here. If you’re not familiar with JACK, checkout LibreMusicProductions fantastic guide. If you’ve never used QJackCtl, a section of the LibreMusicProduction guide introduces it. From now on, it is assumed you have JACK running, and are able to connect cables in the “Connections” window.

Listing All Plugins

With JACK started, and the QJackCtl Connections dialog open, we now start the (slightly) difficult part – loading Jalv and giving it a plugin URI. What is a URI? URIs are used to identify plugins. In short – its like humans have a name. A plugin has a URI.

1
2
Human name = "Harry"
Plugin name = "http://www.openavproductions.com/artyfx#roomy"

The URI is how we identify a plugin, and is a core part of LV2 plugins. Less details, more action? Good idea. Open a terminal, and start typing… Assuming you ONLY have ArtyFX installed, you will see this output:

1
2
3
4
5
6
7
8
9
10
11
12
13
$ lv2ls
http://openavproductions.com/artyfx#bitta
http://openavproductions.com/artyfx#della
http://openavproductions.com/artyfx#driva
http://openavproductions.com/artyfx#ducka
http://openavproductions.com/artyfx#filta
http://openavproductions.com/artyfx#kuiza
http://openavproductions.com/artyfx#masha
http://openavproductions.com/artyfx#panda
http://openavproductions.com/artyfx#roomy
http://openavproductions.com/artyfx#satma
http://openavproductions.com/artyfx#vihda
http://openavproductions.com/artyfx#whaaa

This list shows the URI of each plugin currently available. If you don’t see ArtyFX listed here (scroll back if there’s a lot!) then ArtyFX is not properly installed, go back to the install guide, or if you really can’t figure it out, try this.

Launching A Plugin

From the open terminal, we’re going to launch Jalv, and tell it which plugin to load. In this case, we load a reverb effect from ArtyFX called “Roomy”:

1
jalv.gtk http://www.openavproductions.com/artyfx#roomy

But wait, should you type all that every time you want to load a plugin? Of course not! There is a shorthand way to write this, using some Linux shell magic:

1
jalv.gtk `lv2ls | grep roomy`

Notice the small “backtick” characters, they are not high-commas, but backticks. This allows us to type the name of the plugin, instead of the whole URI:

1
jalv.gtk `lv2ls | grep PLUGIN_NAME_HERE`

Using LV2 Select

A useful little tool is available to select LV2 plugins, and launch them in Jalv (optionally with a preset!): jalv_select

Conclusion

You’ve learned how OpenAV launch plugins using Jalv during development. Yes its a little techie, but we’re software developers, so its feels pretty normal to us. Is it an ideal situation? Absolutly not – we totally understand that musicians would prefer a nice UI to load plugins with. Given that we test OpenAV plugins with Jalv, and we are confident that they are stable and perform well with Jalv. If you have any doubts about a plugin working well – if you can make it misbehave in Jalv, OpenAV requests you to file a bug report.

If you have suggestions or updates for this page, please also email us!

Install

Interested in installing the OpenAV software? Checkout the install page.