def runMusicxmlOutScoreBeethoven(self): ''' Loading file and rendering musicxml output of complete score: beethoven/opus59no2/movement3 ''' x = corpus.parse('beethoven/opus59no2/movement3', forceSource=True) # problem: doing each part is much faster than the whole score junk = GEX().parse(x)
def runMusicxmlOutPartsBeethoven(self): '''Loading file and rendering musicxml output for each part: beethoven/opus59no2/movement3 ''' x = corpus.parse('beethoven/opus59no2/movement3', forceSource=True) # problem: doing each part is much faster than the whole score for p in x.parts: junk = GEX().parse(p)
def runMusicxmlOutLuca(self): ''' Loading file and rendering musicxml output: luca/gloria ''' x = corpus.parse('luca/gloria', forceSource=True) junk = GEX().parse(x)