예제 #1
0
 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 = toMusicXML(p)
예제 #2
0
 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 = toMusicXML(p)
예제 #3
0
 def runMusicxmlOutLuca(self):
     '''
     Loading file and rendering musicxml output: luca/gloria
     '''
     x = corpus.parse('luca/gloria', forceSource=True)
     junk = toMusicXML(x)
예제 #4
0
 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 = toMusicXML(x)
예제 #5
0
 def runMusicxmlOutLuca(self):
     '''
     Loading file and rendering musicxml output: luca/gloria
     '''
     x = corpus.parse('luca/gloria', forceSource=True)
     junk = toMusicXML(x)
예제 #6
0
 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 = toMusicXML(x)