blob: faba7ee0d3b813f3762fc4faaee4659330f9f2da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
## Midi Matrix
### An LV2 MIDI channel matrix patcher
Things that can be accomplished with this plugin:
* MIDI channel filtering (e.g. blocking of specific channels)
* MIDI channel multiplication (e.g. send events from channel X to channels X, Y and Z)
* MIDI channel rerouting (e.g send events from channel X to channel Y)
* And any possible combination thereof
#### Build status
[](https://gitlab.com/OpenMusicKontrollers/midi_matrix.lv2/commits/master)
### Binaries
For GNU/Linux (64-bit, 32-bit, armv7), Windows (64-bit, 32-bit) and MacOS
(64/32-bit univeral).
To install the plugin bundle on your system, simply copy the __midi_matrix.lv2__
folder out of the platform folder of the downloaded package into your
[LV2 path](http://lv2plug.in/pages/filesystem-hierarchy-standard.html).
#### Stable release
* [midi_matrix.lv2-0.24.0.zip](https://dl.open-music-kontrollers.ch/midi_matrix.lv2/stable/midi_matrix.lv2-0.24.0.zip) ([sig](https://dl.open-music-kontrollers.ch/midi_matrix.lv2/stable/midi_matrix.lv2-0.24.0.zip.sig))
#### Unstable (nightly) release
* [midi_matrix.lv2-latest-unstable.zip](https://dl.open-music-kontrollers.ch/midi_matrix.lv2/unstable/midi_matrix.lv2-latest-unstable.zip) ([sig](https://dl.open-music-kontrollers.ch/midi_matrix.lv2/unstable/midi_matrix.lv2-latest-unstable.zip.sig))
### Sources
#### Stable release
* [midi_matrix.lv2-0.24.0.tar.xz](https://git.open-music-kontrollers.ch/lv2/midi_matrix.lv2/snapshot/midi_matrix.lv2-0.24.0.tar.xz) ([sig](https://git.open-music-kontrollers.ch/lv2/midi_matrix.lv2/snapshot/midi_matrix.lv2-0.24.0.tar.xz.asc))
#### Git repository
* <https://git.open-music-kontrollers.ch/lv2/midi_matrix.lv2>
### Packages
* [ArchLinux](https://www.archlinux.org/packages/community/x86_64/midi_matrix.lv2/)
### Bugs and feature requests
* [Gitlab](https://gitlab.com/OpenMusicKontrollers/midi_matrix.lv2)
* [Github](https://github.com/OpenMusicKontrollers/midi_matrix.lv2)
### Plugins
### Channel Filter

The _Midi Matrix - Channel Filter_ is a 3-in-1 filter plugin with a simple UI enabling you to easily accomplish:
* MIDI channel filtering (e.g. blocking of specific channels)
* MIDI channel multiplication (e.g. send events from channel X to channels X, Y and Z)
* MIDI channel rerouting (e.g send events from channel X to channel Y)
* And any possible combination thereof
#### Dependencies
* [LV2](http://lv2plug.in) (LV2 Plugin Specification)
#### Build / install
git clone https://git.open-music-kontrollers.ch/lv2/midi_matrix.lv2.git
cd midi_matrix.lv2
meson build
cd build
ninja -j4
sudo ninja install
#### License
Copyright (c) 2015-2020 Hanspeter Portner (dev@open-music-kontrollers.ch)
This is free software: you can redistribute it and/or modify
it under the terms of the Artistic License 2.0 as published by
The Perl Foundation.
This source is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Artistic License 2.0 for more details.
You should have received a copy of the Artistic License 2.0
along the source as a COPYING file. If not, obtain it from
<http://www.perlfoundation.org/artistic_license_2_0>.
|