bug-lilypond
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

musicxml2ly chord names


From: Silvain Dupertuis
Subject: musicxml2ly chord names
Date: Sun, 28 Jan 2024 17:49:57 +0100
User-agent: Mozilla Thunderbird

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

[Prev in Thread] Current Thread [Next in Thread]