Message Board
Message Board > Sound and Music > MusicEase |
April 4, 2013, 18:17 | |
Zomg
None 641 posts |
For those interested in music, I have a cute little application that we use in our XML class: It's called MusicEase and it uses XML files (among others) as tablatures. Very nice. I just wrote a tablature from the exercise and it works. It's a simple note ladder. Observe: Code: <?xml version="1.0" encoding="UTF-8" standalone="no"?> <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.0 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd"> <score-partwise version="3.0"> <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>2</duration> <type>quarter</type> </note> <note> <pitch> <step>E</step> <octave>4</octave> </pitch> <duration>2</duration> <type>quarter</type> </note> <note> <pitch> <step>G</step> <octave>4</octave> </pitch> <duration>2</duration> <type>quarter</type> </note> <note> <pitch> <step>C</step> <octave>5</octave> </pitch> <duration>2</duration> <type>quarter</type> </note> </measure> </part> </score-partwise> All you have to do to play this song is open it in the app (.xml) and use the 'play' button (the one with the two-bar notes on it, or just press Shift+P). Hope you like it. Link: http://sware.lmphotonics.com/6 … -musicease.html [Edited on April 4, 2013 by Zomg] ____________ |
# |
August 15, 2014, 13:00 | |
Dennis
どこかにいる 2097 posts |
The link isn't working.
____________ Kwakkel |
# |
Message Board > Sound and Music > MusicEase