forked from dsacre/mididings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
77 lines (52 loc) · 1.99 KB
/
README
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
mididings modifications by G van der Kolf and collected from forks
Building in 2021 with Python 3
==============================
Packages required (names from Ubuntu repositories):
libglib2.0-dev libjack-jackd2-dev
libboost-python-dev libboost-thread-dev
python3-liblo python3-dbus python3-decorator python3-pyinotify python3-tk
Build commands for Python 3:
python3 setup.py build
sudo python3 setup.py install
To fix missing -lboost_python, create a symlink to the existing file, e.g.
cd /usr/lib/x86_64-linux-gnu
sudo ln -s libboost_python38.so libboost_python.so
Original readme:
================
mididings - a MIDI router/processor based on Python
Copyright (C) 2008-2014 Dominic Sacré <[email protected]>
http://das.nasophon.de/mididings/
License:
========
mididings is released under the terms of the GNU General Public License,
version 2 or later.
The example scripts in doc/examples are in the public domain.
Requirements:
=============
* Python >= 2.6 (also works with 3.x) [http://www.python.org/]
* ALSA [http://www.alsa-project.org/]
* JACK (>= 0.116.0) [http://jackaudio.org/]
* Boost (Boost.Python, Boost.Thread) [http://www.boost.org/]
* Glib [http://library.gnome.org/devel/glib/]
* decorator [http://pypi.python.org/pypi/decorator]
Optional:
=========
* pyliblo [http://das.nasophon.de/pyliblo/]
(to send or receive OSC messages)
* pysmf [http://das.nasophon.de/pysmf/]
(to read/write standard MIDI files using the process_file() function)
* dbus-python [http://dbus.freedesktop.org/releases/dbus-python/]
(to send DBUS messages)
* pyinotify >= 0.8 [https://github.com/seb-m/pyinotify]
(to automatically restart when a script changes)
* Tkinter
(for the livedings GUI)
* pyxdg [http://freedesktop.org/wiki/Software/pyxdg/]
(so mididings knows where to look for config files)
Installation:
=============
./setup.py build [--disable-jack-midi] [--disable-alsa-seq]
./setup.py install
Documentation:
==============
See http://dsacre.github.io/mididings/doc/ for the mididings manual.