Yuma Mihira

Results 14 comments of Yuma Mihira

Hi @pythagorasisreal, Thank you for your contribution and sorry for the late reply. I added a review comment, could you kindly confirm it?

Hi, Thank you for clarifying these. I don't remember exact reason why I omit a note from 11th and 13th chords, but I think I referred some web pages to...

Hi @adamnemecek, Thank you for raising this. PyChord supports slash chords that just rotated the original order. ```python find_chords_from_notes(["C", "E", "G"]) [] find_chords_from_notes(["E", "G", "C"]) [] find_chords_from_notes(["G", "C", "E"]) []...

A quick workaround for this issue is to add some Qualities using QualityManager. ```python from pychord import QualityManager quality_manager = QualityManager() quality_manager.set_quality("(inv)", (0, 7, 16)) find_chords_from_notes(["C", "G", "E"]) [] ```

Hi @hindman, Thank you for your feedback. Yes, I think your comment is correct and pychord doesn't support double flat or double sharp currently. I can't fix this right now...

@mullerjurgen Thank you for reporting the bug. I fixed it in #27 and it will work like below. ```python >>> from pychord.analyzer import note_to_chord >>> cs = note_to_chord(["D","F","G#","B"]) >>> cs...

Hello Jürgen, Thank you for reporting the issue. I have never tried to use pychord realtime, but this bug seems very interesting and important. > What do you think, shall...

Hi @nickurak, thank you for your comment. How about adding `qualities` property to the `QualityManager` class? It will work like this. Would you create a pull request? Or I can...

Hi @koto-wheel, thank you for your contribution. I want to keep backward compatibility before merging this. I have an idea to do that and create ticket #58. Could you kindly...

Hello @eyaler It is because, A/C# just means "C# root note" and "A major chord" in PyChrod. A/C# -> C# + [A, C#, E] Am7/G -> G + [A, C,...