MusicXML
MusicXML is a historical programming language created in 2004. MusicXML is an XML-based file format for representing Western musical notation. The format is open, fully documented, and can be freely used under the W3C Community Final Specification Agreement. . Read more on Wikipedia...
15Years Old | 20Users | 0Jobs |
- MusicXML ranks in the top 50% of languages
- the MusicXML wikipedia page
- MusicXML first appeared in 2004
- See also: xml, dtd, sibelius-software, javascript
- I have 31 facts about MusicXML. what would you like to know? email me and let me know how I can help.
Example code from Wikipedia:
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"> <score-partwise version="3.1"> <part-list> <score-part id="P1"> <part-name>Music</part-name> </score-part> </part-list> <part id="P1"> <measure number="1"> <attributes> <divisions>1</divisions> <key> <fifths>0</fifths> </key> <time> <beats>4</beats> <beat-type>4</beat-type> </time> <clef> <sign>G</sign> <line>2</line> </clef> </attributes> <note> <pitch> <step>C</step> <octave>4</octave> </pitch> <duration>4</duration> <type>whole</type> </note> </measure> </part> </score-partwise>
Last updated December 10th, 2019