mididings icon indicating copy to clipboard operation
mididings copied to clipboard

A MIDI router/processor based on Python

Results 27 mididings issues
Sort by recently updated
recently updated
newest added

cannot find `libboost-python-dev` on ubuntu, when doing final linking stage ```sh git clone https://github.com/dsacre/mididings.git cd mididings sudo apt install -y libjack-jackd2-dev libboost-dev libboost-python-dev libboost-thread-dev ./setup.py build ./setup.py install ``` output:...

Harmonizer() included division which produces a float in python3. Values were therefore not valid to be passed to Transpose().

Hi @dsacre! I'm @jofemodo from zynthian project. We are thinking of using mididings for our new "core", that it's planned to be C++. I can't find anything about how to...

I am trying to filter messages by program change numbers or continuous control numbers and send them to a specific port with the following code: `(ProgramFilter(6,7,8,9,10) | CtrlFilter(96,97,98,99,100)) % Port('UMC204')`...

`async` is now a reserved word, beginning in python 3.7. This throws a syntax error in file `mididings/units/call.py`. Just needs the variable to be renamed, something like `a_sync`, or anything...

When the SubSceneSwitch offset value is < 0 and wrap is True, n eventually becomes < 0 and SubSceneSwitch stops working. To correct this, after calculating the remainder, check for...

[sent that message twice to the ML and subscribed to it, but messages don't show up there] Hi, I'd like to subscribe to jack midi ports by using their aliases,...

I received the following. Suggestions? ``` Traceback (most recent call last): File "./Distribute", line 30, in from mididings import * File "/usr/lib/python3.6/site-packages/mididings-2015-py3.6-linux-x86_64.egg/mididings/__init__.py", line 13, in import _mididings ImportError: dynamic module...

Hello, I am trying to install mididings but am running into this issue: "couldn't find package 'jack'" I am new at using terminal but here is what I have installed:...

The documentation mentions: *"When sending events through a MIDI output port, or by using the Sanitize() unit, velocities greater than 127 will automatically be reduced to 127, and events with...