What is music21?
Music21 is a set of tools for helping scholars and other active listeners answer questions about music quickly and simply. If you’ve ever asked yourself a question like, “I wonder how often Bach does that” or “I wish I knew which band was the first to use these chords in this order,” or “I’ll bet we’d know more about Renaissance counterpoint (or Indian ragas or post-tonal pitch structures or the form of minuets) if I could write a program to automatically write more of them,” then music21 can help you with your work.
How simple is music21 to use?
Extremely. After starting Python and typing "from music21 import *" you can do all of these things with only a single line of music21 code:
Display a short melody in musical notation:
tinyNotation.TinyNotationStream("c4 d8 f g16 a g f#", "3/4").show()
Hear the interval of a quarter tone (coming soon!):
interval.ChromaticInterval(0.5).show("midi")
Print the twelve-tone matrix for a
tone row (in this case the opening of Schoenberg's Fourth String Quartet):
print (serial.rowToMatrix([2,1,9,10,5,3,4,0,8,7,6,11]) )
Convert a file from Humdrum's **kern data format to MusicXML for editing in Finale or Sibelius:
converter.parse('/users/cuthbert/docs/composition.krn').write('musicxml')
With five lines of music21 code or less, you can:
Prepare a thematic (incipit) catalog of Beethoven string quartet movements in 6/8:
for work in corpus.beethovenStringQuartets():
if work.flat.getElementsByClass(meter.TimeSignature)[0].ratioString == '6/8':
catalog.append(work.measureRange(0,2))
catalog.show()
Google every motet in your database that includes the word ‘exultavit’ in the superius (soprano) part (even if broken up as multiple syllables in the source file) to see how common the motet's text is:
for motet in listOfMotets:
superius = motet[0]
lyrics = text.assembleLyrics(part)
if 'exultavit' in lyrics:
webbrowser.open('http://www.google.com/search?&q=' + lyrics)
Add the German name (i.e., B♭ = B, B = H, A♯ = Ais) under each note of a Bach chorale and show the new score:
for thisNote in bwv295.flat.notes:
thisNote.addLyric(thisNote.pitch.german)
bwv295.show()
Get a quick three dimensional graph showing how common various pitches and durations are in a Chopin Mazurka (We'll find that while Mozart shows a nice three-dimensional bell-curve, Chopin does not):
streamObject = converter.parse(humdrum.testFiles.mazurka6)
stream2 = streamObject.stripTies()
correlated = graph.Plot3DBarsPitchSpaceQuarterLength(stream2.flat)
correlated.process()
Of course, you are never limited to just using five lines to do tasks with music21. In the demos folder of the music21 package and in the sample problems page (and throughout the documentation) you’ll find examples of more complicated problems that music21 is well-suited to solving, such as cataloging the rhythms of a piece from most to least-frequently used.
Music21 builds on preexisting frameworks and technologies such as Humdrum, MusicXML, MuseData, MIDI, and Lilypond but music21 uses an object-oriented skeleton that makes it easier to handle complex data. But at the same time music21 tries to keep its code clear and make reusing existing code simple. With music21 once you (or anyone else) has written a program to solve a problem, that program can easily become a module to be adapted or built upon to solve dozens of similar (but not identical) problems.
Interested in learning more?
- Get Started with music21
- Browse the music21 documentation
- Download music21 from Google Code
- Get our latest news and updates at the music21 blog
- Read the Frequently Asked Questions list
- Sign up for the music21list mailing list through Google Groups.
Latest music21 News
How can I contribute?
Music21 is a rapidly-progressing project, but it is always looking for researchers interested in contributing code, questions, freely-distributable pieces, bug fixes, or documentation. Please contact Michael Scott Cuthbert (cuthbert at mit.edu), Principal Investigator, and/or Ben Houge (ben at benhouge.com), Lead Programmer.
The development of music21 has been supported by the School of Humanities, Arts, and Social Sciences at M.I.T., the Music and Theater Arts section, and a generous grant from the Seaver Institute. Further donations to the project are always welcome.
- Get Started with music21
- Browse the music21 documentation
- Download music21 from Google Code
- Get our latest news and updates at the music21 blog
- Read the Frequently Asked Questions list
- Sign up for the music21list mailing list through Google Groups.
