Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read MusicXML file in FLASH CS4/AS3 in order to visually display the data [closed]

I want to create music Visualization in flash by reading the musicXML file.

Is there some sort of a class that reads it? or a help guide to understand the musicXML structure and how to use it in order to visualize its music?

thanks, Alon

like image 709
Alon Avatar asked Nov 15 '22 04:11

Alon


1 Answers

You use E4X (ECMAscript for XML) to read and parse MusicXML files in the same way that you use it to read and parse other XML files. To the best of my knowledge there is no additional class library available. Developers like Noteflight and Legato who are doing MusicXML in Flash find it better to sell services rather than ActionScript libraries.

There is lots of MusicXML information available at http://www.recordare.com/musicxml, including a tutorial at http://www.recordare.com/musicxml/tutorial. Creating music notation by computer is complex, so be prepared for a lot of work if that's what you want to do. If you have some other type of visualization in mind, that could be a lot easier. Being able to read music notation will be a big help; that's a level of knowledge that is assumed even in the MusicXML tutorial.

Good luck!

like image 153
Michael Avatar answered Nov 16 '22 23:11

Michael