Added arpeggios and cyclic zip operation

This commit is contained in:
2023-03-02 20:45:32 +02:00
parent 6167c4be33
commit bc779b0c81
8 changed files with 230 additions and 66 deletions

View File

@ -66,6 +66,6 @@ class ZiffersMusic21(converter.subConverters.SubConverter):
m_item = note.Rest(item.duration * 4)
elif isinstance(item, Chord):
m_item = chord.Chord(item.notes)
m_item.duration.quarterLength = item.durations * 4
m_item.duration.quarterLength = item.duration * 4
note_stream.append(m_item)
self.stream = note_stream.makeMeasures()