Difference between revisions of "Adding LV2 plugins"

From ZynthianWiki
Jump to navigation Jump to search
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
So lets pick up the bits and pieces . . .
+
So lets pick up the bits and pieces!
  
 +
==Enabling LV2 plugins with the webconf GUI==
  
A Putty connection to the relevant machine . . .
+
[[File:5aa1443936d6975679d92eb5cafb42a792a1142a.png|600px|right]]
  
[[File:12546f27f90cd35123b556871f9d3bd6af821f5b.png|800px]]
+
From your browser, access the zynthian's webconf tool and open the "Software->LV2 plugins" panel. Search the plugin you want to enable, check it and save.
  
For those, that words like git have little meaning, Wikipedia says
+
<br clear=all>
Git is a distributed version-control system for tracking changes in source code during software development. . .
 
  
It accesses where teams & oneself keep stuff when developing code. It’s also where one can easily grab the project at various points in it’s history, which is very helpful. I’ve known people who keep audio collections under git. It does its job very well but it has a certain surrounding mythology for the infrequent user.
+
[[File:A654c4082097355ec19df5e05b2aa0ec31c7d0bd.png|600px|right]]
  
One needs a suite of programmes loaded on your machine to access the git repository and these are run by either the command line using the word git . . with a command and parameters, or a GUI, perhaps for instance, built into an Interactive Development Environment (An iDE).
+
[[File:18a38ae4efc0c74b72e793ff0619e05604675df1.png|600px|right]]
  
so
+
After that, the plugin will be available from the zynthian's UI. You can add it on a synth engine's chain or create an independent FX chain.
the line described in the page pointed to by the weblink in the definition of the lv2 plugin . . . .
 
  
so
+
<br clear=all>
git clone git://github.com/x42/xfade.lv2.git
 
  
will copy the recognised structure defined at this site . . .
+
[[File:A612ffab406fc88d2fb550ac71e39f5ec4b0d8e8.png|600px|right]]
which is:- I’ve opened the clone dialog to show how this can be picked up from the site itiself… at github which surprise, surprise is a place for git repositories to hang out.
 
  
[[File:5e8350578ef1d03da0aa2396e74e6bddd6a3112c.png|800px]]
+
and we have our new effect Stereo DJ X-Fade, with its controls
  
We can now use the cd command to move into the directory that the git clone command has magically created for us.
+
<br clear=all>
  
and we can see that the files structure from the repo has been ‘cloned’ to our directory in root.
+
==Installing a plugin from its source code using the CLI (Command Line Interface)==
  
[[File:324d0b65919661ebd3463b6dcf816141a24f4d98.png|800px]]
+
First you need a ssh (putty) connection to the zynthian:
So onwards . . . .
 
  
the next instruction on the readme page is . . .
+
[[File:12546f27f90cd35123b556871f9d3bd6af821f5b.png|800px]]
  
make
+
For those that words like "git" have little meaning, Wikipedia says:
  
so what’s going on here. . . ?
+
Git is a distributed version-control system for tracking changes in source code during software development.
  
Wikipedia :- Make is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program.
+
It accesses where teams & oneself keep stuff when developing code. It’s also where one can easily grab the project at various points in it’s history, which is very helpful. I’ve known people who keep audio collections under git. It does its job very well but it has a certain surrounding mythology for the infrequent user.
  
so what is this doing? Well the cloned repo contains a description of the code . . .
+
One needs a suite of programms loaded on your machine to access the git repository and these are run by either the command line using the word git and a list of parameters, or a GUI, perhaps for instance, built into an Interactive Development Environment (An iDE).
  
xfade.c
+
So the line described in the page pointed to by the weblink in the definition of the lv2 plugin:
  
Which actually does the work . . .
+
cd /zynthian/zynthian-sw/plugins
 +
git clone git://github.com/x42/xfade.lv2.git
  
But this programme needs to be connected or linked to the machine it will run on and this is where make comes in. it makes sure that the details are all up to date and choose the versions of code libraries on the machine that will be used.
+
will get a copy of the source code for xfade.lv2 project, being x42 the author.
  
there is a file with various possible names Makefile in this case: https://github.com/x42/xfade.lv2/blob/master/Makefile for those that like the gore . . .
+
I’ve opened the clone dialog to show how this can be picked up from the site itiself at github. Github, which surprise, is a hosting place for git repositories.
  
so after make . . . .
+
[[File:5e8350578ef1d03da0aa2396e74e6bddd6a3112c.png|800px]]
  
[[File:25cb1cb627ba8171efb5b37645ee432ebb1f31cc.png|400px]]
+
We can now use the "cd" command to move into the directory that the "git clone" command has magically created for us, and we can see that the files structure from the repo has been ‘cloned’ to our directory in the zynthian.
  
we can see some response and notice it’s now built a directory called build
+
  cd xfade.lv2
 +
  ls
  
which contains two text files and an .so file
+
[[File:324d0b65919661ebd3463b6dcf816141a24f4d98.png|800px]]
  
[[File:98daf55da5d9cbac45bd48d325bec4291164c13f.png|400px]]
+
The next instruction on the readme page is:
 +
 
 +
make
  
the so file
+
what’s going on here? Wikipedia says:
An .so file is a compiled library file. It stands for “Shared Object” and is analogous to a Windows DLL.
 
  
So we have descriptions of the lv2 setup and a programming plug & socket ( .so file) to allow the programme to connect to the bits and pieces it needs. . .
+
Make is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program.
  
sudo make install PREFIX=/usr
+
so what is this doing? Well the cloned repo contains the source code for the plugin:
  
well sudo is the magic invocation that allows you to take on poweruser status to modify files in the structure that would normally be blocked from you. Now in the zynthian we run with root power all the time, so we can do this anyway but the sudo does no harm . . .
+
xfade.c
so we are running the next command as superuser, and the next command is
 
  
sudo make install PREFIX=/usr
+
which actually does the work. But this programm needs to be compiled (converted to machine code) and linked (connected to the system it will run on) and this is where make comes in. It makes sure that the details are all up to date and choose the versions of code libraries on the machine that will be used.
  
so we are running make again but with the install command which is actually defined in the Makefile, and a specific setting of a parameter called prefix with a specific value
+
There is a file with various possible names, Makefile in this case:
  
[[File:302e0da4a6d703c82f1a0f9ec056b7cc40f191c8.png|400px]]
+
https://github.com/x42/xfade.lv2/blob/master/Makefile
  
and just checking we can see the file that the make install has created.
+
for those that like the gore.
  
[[File:4381ef17152ef986569c39c24a4cea208f8cd882.png|400px]]
+
So after make:
  
notice these are owned by root, which is why the sudo would have been needed.
+
[[File:25cb1cb627ba8171efb5b37645ee432ebb1f31cc.png|400px]]
  
so from the
+
we can see some response and notice it’s now built a directory called build which contains two text files and an a .so file
Is there a guide to installing custom LV2 plugins somewhere?
 
we get @Baggypants
 
  
ssh on to the zynth,
+
[[File:98daf55da5d9cbac45bd48d325bec4291164c13f.png|400px]]
git clone the repo.
 
install any dependencies
 
Run make, to compile the LV2,
 
copy the <somename>.lv2 directory into /zynthian/zynthian-my-plugins/lv2/ .
 
reboot
 
enable the plugin in the webconf
 
and checking it seems to be there . . . :smiley: ( I’m not sure how but hey …!)
 
  
[[File:5462d5a420793e0322476de3c61469ecdbe4d6e8.png|800px]]
+
the so file is a compiled library file. It stands for “Shared Object” and is analogous to a Windows DLL.
  
and there it is in the lv2 menu in webconf . . .
+
So we have descriptions of the lv2 setup and a programming plug & socket ( .so file) to allow the programm to connect to the bits and pieces it needs.
  
[[File:5aa1443936d6975679d92eb5cafb42a792a1142a.png|800px]]
+
make install
  
....
+
so we are running make again but with the install subcommand which is actually defined in the Makefile, and will copy the ready-to-run plugin files to the right system directories.
  
[[File:A654c4082097355ec19df5e05b2aa0ec31c7d0bd.png|800px]]
+
[[File:302e0da4a6d703c82f1a0f9ec056b7cc40f191c8.png|400px]]
  
So we choose a new effect . . .
+
this is just checking if we can see the files that the make install has installed on the system.
  
[[File:18a38ae4efc0c74b72e793ff0619e05604675df0.png|800px]]
+
[[File:4381ef17152ef986569c39c24a4cea208f8cd882.png|400px]]
  
and there we have our new effect Stereo DJ X-Fade . . .
+
The steps resumed:
  
with the parameters . . .
+
* ssh on to the zynth,
 +
* git clone the repo.
 +
* install any dependencies
 +
* Run make, to compile the LV2,
 +
* copy the <somename>.lv2 directory into /zynthian/zynthian-my-plugins/lv2/
 +
* reboot
 +
* enable the plugin in the webconf
  
[[File:A612ffab406fc88d2fb550ac71e39f5ec4b0d8e8.png|800px]]
+
[[File:5462d5a420793e0322476de3c61469ecdbe4d6e8.png|400px]]
  
sadly the encoder for A A+B B only selects those values not a gradual fade… . . .
+
Sadly the encoder for A A+B B only selects those values not a gradual fade. But this is probably because I now realise it’s a stereo input device so has 4 inputs that ar being mapped to 2 so that might well explain it.
But this is probably because I now realise it’s a stereo input device so has 4 inputs that ar being mapped to 2 so that might well explain it…
 
  
:smiley:
+
;-)

Latest revision as of 18:28, 19 February 2021

So lets pick up the bits and pieces!

1 Enabling LV2 plugins with the webconf GUI

5aa1443936d6975679d92eb5cafb42a792a1142a.png

From your browser, access the zynthian's webconf tool and open the "Software->LV2 plugins" panel. Search the plugin you want to enable, check it and save.


A654c4082097355ec19df5e05b2aa0ec31c7d0bd.png
18a38ae4efc0c74b72e793ff0619e05604675df1.png

After that, the plugin will be available from the zynthian's UI. You can add it on a synth engine's chain or create an independent FX chain.


A612ffab406fc88d2fb550ac71e39f5ec4b0d8e8.png

and we have our new effect Stereo DJ X-Fade, with its controls


2 Installing a plugin from its source code using the CLI (Command Line Interface)

First you need a ssh (putty) connection to the zynthian:

12546f27f90cd35123b556871f9d3bd6af821f5b.png

For those that words like "git" have little meaning, Wikipedia says:

Git is a distributed version-control system for tracking changes in source code during software development.

It accesses where teams & oneself keep stuff when developing code. It’s also where one can easily grab the project at various points in it’s history, which is very helpful. I’ve known people who keep audio collections under git. It does its job very well but it has a certain surrounding mythology for the infrequent user.

One needs a suite of programms loaded on your machine to access the git repository and these are run by either the command line using the word git and a list of parameters, or a GUI, perhaps for instance, built into an Interactive Development Environment (An iDE).

So the line described in the page pointed to by the weblink in the definition of the lv2 plugin:

cd /zynthian/zynthian-sw/plugins
git clone git://github.com/x42/xfade.lv2.git

will get a copy of the source code for xfade.lv2 project, being x42 the author.

I’ve opened the clone dialog to show how this can be picked up from the site itiself at github. Github, which surprise, is a hosting place for git repositories.

5e8350578ef1d03da0aa2396e74e6bddd6a3112c.png

We can now use the "cd" command to move into the directory that the "git clone" command has magically created for us, and we can see that the files structure from the repo has been ‘cloned’ to our directory in the zynthian.

 cd xfade.lv2
 ls

324d0b65919661ebd3463b6dcf816141a24f4d98.png

The next instruction on the readme page is:

make

what’s going on here? Wikipedia says:

Make is a build automation tool that automatically builds executable programs and libraries from source code by reading files called Makefiles which specify how to derive the target program.

so what is this doing? Well the cloned repo contains the source code for the plugin:

xfade.c

which actually does the work. But this programm needs to be compiled (converted to machine code) and linked (connected to the system it will run on) and this is where make comes in. It makes sure that the details are all up to date and choose the versions of code libraries on the machine that will be used.

There is a file with various possible names, Makefile in this case:

https://github.com/x42/xfade.lv2/blob/master/Makefile

for those that like the gore.

So after make:

25cb1cb627ba8171efb5b37645ee432ebb1f31cc.png

we can see some response and notice it’s now built a directory called build which contains two text files and an a .so file

98daf55da5d9cbac45bd48d325bec4291164c13f.png

the so file is a compiled library file. It stands for “Shared Object” and is analogous to a Windows DLL.

So we have descriptions of the lv2 setup and a programming plug & socket ( .so file) to allow the programm to connect to the bits and pieces it needs.

make install

so we are running make again but with the install subcommand which is actually defined in the Makefile, and will copy the ready-to-run plugin files to the right system directories.

302e0da4a6d703c82f1a0f9ec056b7cc40f191c8.png

this is just checking if we can see the files that the make install has installed on the system.

4381ef17152ef986569c39c24a4cea208f8cd882.png

The steps resumed:

  • ssh on to the zynth,
  • git clone the repo.
  • install any dependencies
  • Run make, to compile the LV2,
  • copy the <somename>.lv2 directory into /zynthian/zynthian-my-plugins/lv2/
  • reboot
  • enable the plugin in the webconf

5462d5a420793e0322476de3c61469ecdbe4d6e8.png

Sadly the encoder for A A+B B only selects those values not a gradual fade. But this is probably because I now realise it’s a stereo input device so has 4 inputs that ar being mapped to 2 so that might well explain it.

-)