Skip to content

Python MusicXML parser to load mxml files as a pianoroll representation. The pianoroll i

Notifications You must be signed in to change notification settings

qsdfo/musicxml_parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MusicXML parser

Installation

pip install musicxml_parser

Usage

from musicxml_parser.scoreToPianoroll import scoreToPianoroll
score_path = "test.xml"
quantization = 16
pianoroll, articulation = scoreToPianoroll(score_path, quantization)

Description :

Music XML parser written in Python based on a SAX analyzer. Given a mxml file, outputs two dictionaries indexed by instruments names:

  • a pianoroll
  • a binary articulation which is the same matrix as the pianoroll but with shorter duration so that we can distinguish between a long note or several repeated occurences of the same note. Hence, if a quarter note lasted 4 frames in the pianoroll it would be 3 in the articulation. Staccati notes are 1 whatever their duration.

Packages dependencies :

  • numpy

Files

The main function is ScoreToPianoroll in ScoreToPianoroll.py It takes as input the path to a MusicXML file and output two python dictionnary of the form :

{'track_name' : matrix}

where matrix is two-dimensional, first axis begin the time, second the pitch.

About

Python MusicXML parser to load mxml files as a pianoroll representation. The pianoroll i

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages