How To Install lv2dynparam on Fedora 34

lv2dynparam is LV2 dynamic parameters extension LV2 dynamic parameters extension

Introduction

In this tutorial we learn how to install lv2dynparam on Fedora 34.

What is lv2dynparam

lv2dynparam is a LV2 plugin interface extension that enables plugin parameters to appear and disappear (i.e. number of voices). It also allows nested grouping of parameters. Groups can be used for things like ADSR abstraction, i.e. group of 4 float parameters. The extension should be suitable for all plugins that expose many and/or complex data types, like samplers, non-trivial synths, etc. lv2dynparam 2 22.fc34 x86_64 38 k lv2dynparam-2-22.fc34.src.rpm fedora LV2 dynamic parameters extension http GPLv2 lv2dynparam is a LV2 plugin interface extension that enables plugin parameters to appear and disappear (i.e. number of voices). It also allows nested grouping of parameters. Groups can be used for things like ADSR abstraction, i.e. group of 4 float parameters. The extension should be suitable for all plugins that expose many and/or complex data types, like samplers, non-trivial synths, etc.

We can use yum or dnf to install lv2dynparam on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install lv2dynparam.

Install lv2dynparam on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install lv2dynparam using dnf by running the following command:

sudo dnf -y install lv2dynparam

Install lv2dynparam on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install lv2dynparam using yum by running the following command:

sudo yum -y install lv2dynparam

How To Uninstall lv2dynparam on Fedora 34

To uninstall only the lv2dynparam package we can use the following command:

sudo dnf remove lv2dynparam

lv2dynparam Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/7f
/usr/lib/.build-id/7f/bcaa6f64430d4f83199dd5034c38a761fb94d4
/usr/lib/.build-id/b7
/usr/lib/.build-id/b7/55c1095d0697f6a5038744e82b348a7b78a147
/usr/lib/liblv2dynparamhost1.so.1
/usr/lib/liblv2dynparamhost1.so.1.0.0
/usr/lib/liblv2dynparamplugin1.so.0
/usr/lib/liblv2dynparamplugin1.so.0.0.0
/usr/share/doc/lv2dynparam
/usr/share/doc/lv2dynparam/AUTHORS
/usr/share/doc/lv2dynparam/NEWS
/usr/share/doc/lv2dynparam/README
/usr/share/licenses/lv2dynparam
/usr/share/licenses/lv2dynparam/COPYING
/usr/lib/.build-id
/usr/lib/.build-id/bd
/usr/lib/.build-id/bd/f061f155b16fdb6a4b5f36d9114dfc900fe53b
/usr/lib/.build-id/e9
/usr/lib/.build-id/e9/08625d0c6d4715d5fad6f80cf3ce186af9b2ab
/usr/lib64/liblv2dynparamhost1.so.1
/usr/lib64/liblv2dynparamhost1.so.1.0.0
/usr/lib64/liblv2dynparamplugin1.so.0
/usr/lib64/liblv2dynparamplugin1.so.0.0.0
/usr/share/doc/lv2dynparam
/usr/share/doc/lv2dynparam/AUTHORS
/usr/share/doc/lv2dynparam/NEWS
/usr/share/doc/lv2dynparam/README
/usr/share/licenses/lv2dynparam
/usr/share/licenses/lv2dynparam/COPYING

References

Summary

In this tutorial we learn how to install lv2dynparam on Fedora 34 using yum and dnf.