Guest User

Untitled

a guest
Apr 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. chords = stream.Stream()
  2.  
  3. d7 = chord.Chord(['D4', 'F4', 'A4', 'C5'])
  4. dmin7 = chord.Chord(['D4', 'F-4', 'A4', 'C5'])
  5. dmaj7 = chord.Chord(['D4', 'F#4', 'A4', 'C#5'])
  6. chords.append(d7)
  7. chords.append(dmin7)
  8. chords.append(dmaj7)
  9. conv = converter.subConverters.ConverterLilypond()
  10. conv.write(chords, fmt='lilypond', fp='file', subformats=['png'])
Add Comment
Please, Sign In to add comment