How do you add missing "no 5" chords to chord detection? #333
-
Hi, amazing library. I was noticing that ["C4", "Eb4", "Bb4"] = Cminor 7 ["C4", "Eb4", "B4"] = CminorMajor 7 ["C4", "Eb4", "Bb4", "D5", "F5"] = Cminor 11 (and a few others...) I tried to use the ChordType.add(["1P 3m 7m"], ["m7no5"]) Any help you can provide guiding me to add these missing chords into detection is greatly appreciated! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the problem, I used the wrong syntax (had all three notes in the same string rather than an array of strings)! Everything works as expected when the syntax is correct. ChordType.add(["1P", "3m", "7m"], ["m7no5", "min7no5", "mi7no5", "-7no5"], "minor seventh no5") |
Beta Was this translation helpful? Give feedback.
I found the problem, I used the wrong syntax (had all three notes in the same string rather than an array of strings)! Everything works as expected when the syntax is correct.