• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

img/H03-May-2022-

lv2ttl/H26-Sep-2019-321310

src/H26-Sep-2019-579439

COPYINGH A D26-Sep-201917.7 KiB340281

MakefileH A D03-May-20223.2 KiB11180

README.mdH A D26-Sep-20191,021 3826

git2lv2.mkH A D26-Sep-20191.4 KiB4429

README.md

1Onset Trigger LV2
2=================
3
4An audio to midi converter currently intended for Bass/Kick-drums.
5
6About
7-----
8
9Did you ever had a recording of a kickdrum that just sounds bad and pretty
10much any MIDI sampled kick is more suitable for repairing the recording?
11
12You have two options, re-record the drums or trigger a MIDI instrument instead.
13This plugin is intended for the latter. It's in very early development but
14works already for some cases.
15
16Install
17-------
18
19Compiling this plugin requires the LV2 SDK, gnu-make and a c-compiler.
20
21```bash
22  git clone git://github.com/x42/onsettrigger.lv2
23  cd onsettrigger.lv2
24  make
25  sudo make install PREFIX=/usr
26
27  # test run w/simple GTK GUI
28  jalv.gtk 'http://gareus.org/oss/lv2/onsettrigger#bassdrum_mono'
29  #or
30  jalv.gtk 'http://gareus.org/oss/lv2/onsettrigger#bassdrum_stereo'
31
32
33  sudo make uninstall PREFIX=/usr
34```
35
36Note to packagers: The Makefile honors `PREFIX` and `DESTDIR` variables as well
37as `CFLAGS`, `LDFLAGS` and `OPTIMIZATIONS` (additions to `CFLAGS`).
38