Esempio n. 1
0
 def __chord_and_length(self):
     #分解脳を拍子の分母(?)で割りますー(全音=1920)
     self._minimumunit = 1920 / self._nn
     qNList = MAutoChorus.noteQuantization(self._anotes, self._minimumunit)
     hamList = MAutoChorus.melodyrestoration(self._anotes, qNList, self._key, self._dd, self._nn)
     MChord.autoChord(hamList)
     MUnderThree.autoUnderThree(hamList)
     self._CLList = [{'Chord': ham.chord, 'Length': ham.length} for ham in hamList]
     self.__list_lyric()
     self.__list_chord()