コード例 #1
0
ファイル: beatles.py プロジェクト: andreasjansson/cr
 def read_aligned_labels(self, track_id, times):
     unaligned_chords = read_lab_chords(label_path(track_id))
     aligned_chords, beats = align(times, unaligned_chords)
     return aligned_chords
コード例 #2
0
ファイル: billboard.py プロジェクト: andreasjansson/cr
 def read_aligned_labels(self, track_id, times):
     unaligned_chords = read_lab_chords(mcgill_path(self.billboard_path, track_id, 'majmin.lab'))
     aligned_chords, beats = align(times, unaligned_chords)
     return aligned_chords