midiharmony 26.1.27__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- midiharmony/MIDI.py +1732 -0
- midiharmony/README.md +29 -0
- midiharmony/TMIDIX.py +15044 -0
- midiharmony/__init__.py +2 -0
- midiharmony/artwork/Project-Los-Angeles.png +0 -0
- midiharmony/artwork/README.md +10 -0
- midiharmony/artwork/Tegridy-Code-2026.png +0 -0
- midiharmony/artwork/__init__.py +0 -0
- midiharmony/artwork/midiharmony.png +0 -0
- midiharmony/data/README.md +17 -0
- midiharmony/data/__init__.py +0 -0
- midiharmony/data/all_harmonic_chords_quads.npz +0 -0
- midiharmony/helpers.py +274 -0
- midiharmony/midi_to_colab_audio.py +3637 -0
- midiharmony/midiharmony.py +519 -0
- midiharmony-26.1.27.dist-info/METADATA +72 -0
- midiharmony-26.1.27.dist-info/RECORD +20 -0
- midiharmony-26.1.27.dist-info/WHEEL +5 -0
- midiharmony-26.1.27.dist-info/licenses/LICENSE +201 -0
- midiharmony-26.1.27.dist-info/top_level.txt +1 -0
midiharmony/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# midiharmony
|
|
2
|
+
## Fast, data‑driven harmony analysis for any MIDI file
|
|
3
|
+
|
|
4
|
+
<img width="1024" height="1024" alt="midiharmony" src="https://github.com/user-attachments/assets/586cf022-ce06-4cea-bfdc-ffcf9b0365d1" />
|
|
5
|
+
|
|
6
|
+
***
|
|
7
|
+
|
|
8
|
+
## Abstract
|
|
9
|
+
|
|
10
|
+
*midiharmony provides fast, stand‑alone harmony analysis for MIDI files by comparing their chord and note relationships against a high‑quality database of extracted chord quads. This approach enables reliable detection of strong harmonic structure, musically coherent progressions, and potential inconsistencies, making it a practical tool for music‑AI pipelines, composition analysis, and large‑scale MIDI processing.*
|
|
11
|
+
|
|
12
|
+
***
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```sh
|
|
17
|
+
!pip install -U midiharmony
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
***
|
|
21
|
+
|
|
22
|
+
## Basic use example
|
|
23
|
+
|
|
24
|
+
```python
|
|
25
|
+
import midiharmony
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Project Los Angeles
|
|
29
|
+
### Tegridy Code 2026
|