[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Midi2ly + Absolute Mode doesnt work
From: |
Joram Berger |
Subject: |
Re: Midi2ly + Absolute Mode doesnt work |
Date: |
Mon, 4 Nov 2024 15:13:08 +0100 |
User-agent: |
Mozilla Thunderbird |
I looked a bit into it and it seems that it's an oversight when moving
on to Python 3. In line 204, the division should be an integer division
(note the double slash):
o = self.pitch // 12 - 4
https://github.com/lilypond/lilypond/blob/master/scripts/midi2ly.py#L204