These first 2 lines of the dictionary for chords in musicxml2ly
contains a faulty 5 for simple major and minor chords
(I discovered it with a conversion from a MuseScore sheet converted into xml)

chordkind_dict = {
    'major': ':5',
    'minor': ':m5',

should be

chordkind_dict = {
    'major': '',
    'minor': ':m',

a:5 results in a two notes chord <a e,>

--
Silvain Dupertuis
Route de Lausanne 335
1293 Bellevue (Switzerland)
tél. +41-(0)22-774.20.67
portable +41-(0)79-604.87.52
web: silvain-dupertuis.org <https://perso.silvain-dupertuis.org>

Reply via email to