1 # -*- coding: utf-8 -*-
3 conversion d'un fichier musicxml en objet song minwii.
9 from types
import StringTypes
10 from xml
.dom
.minidom
import parse
11 from optparse
import OptionParser
12 from itertools
import cycle
13 #from Song import Song
17 DIATO_SCALE
= {'C' : 60,
25 CHROM_SCALE
= { 0 : ('C', 0),
39 FR_NOTES
= {'C' : u
'Do',
51 def __init__(self
, node
, autoDetectChorus
=True) :
55 self
.distinctNotes
= []
56 self
.quarterNoteDuration
= 500
60 self
.songStartsWithChorus
= False
61 self
._findVersesLoops
(autoDetectChorus
)
63 def _parseMusic(self
) :
66 distinctNotesDict
= {}
68 for measureNode
in self
.node
.getElementsByTagName('measure') :
71 # iteration sur les notes
72 # divisions de la noire
73 divisions
= int(_getNodeValue(measureNode
, 'attributes/divisions', divisions
))
74 for noteNode
in measureNode
.getElementsByTagName('note') :
75 note
= Note(noteNode
, divisions
, previous
)
76 if (not note
.isRest
) and (not note
.tiedStop
) :
77 measureNotes
.append(note
)
81 assert previous
.tiedStart
82 previous
.addDuration(note
)
86 previous
.addDuration(note
)
87 except AttributeError :
88 # can occur if part starts with a rest.
89 if previous
is not None :
90 # something else is wrong.
95 self
.notes
.extend(measureNotes
)
97 for note
in measureNotes
:
98 if not distinctNotesDict
.has_key(note
.midi
) :
99 distinctNotesDict
[note
.midi
] = True
100 self
.distinctNotes
.append(note
)
104 barlineNode
= measureNode
.getElementsByTagName('barline')[0]
108 barline
= Barline(barlineNode
, measureNotes
)
110 self
.repeats
.append(barline
)
112 self
.distinctNotes
.sort(lambda a
, b
: cmp(a
.midi
, b
.midi
))
113 sounds
= self
.node
.getElementsByTagName('sound')
115 for sound
in sounds
:
116 if sound
.hasAttribute('tempo') :
117 tempo
= float(sound
.getAttribute('tempo'))
120 self
.quarterNoteDuration
= int(round(60000/tempo
))
123 def _findVersesLoops(self
, autoDetectChorus
) :
124 "recherche des couplets / boucles"
125 verse
= self
.verses
[0]
126 for note
in self
.notes
[:-1] :
128 ll
= len(note
.lyrics
)
129 nll
= len(note
.next
.lyrics
)
132 self
.verses
.append(verse
)
133 verse
.append(self
.notes
[-1])
135 if autoDetectChorus
and len(self
.verses
) > 1 :
136 for i
, verse
in enumerate(self
.verses
) :
137 if len(verse
[0].lyrics
) == 1 :
138 self
.chorus
= self
.verses
.pop(i
)
139 self
.songStartsWithChorus
= i
==0
143 def iterNotes(self
) :
144 "exécution de la chanson avec l'alternance couplets / refrains"
145 for verse
in self
.verses
:
146 if self
.songStartsWithChorus
:
147 for note
in self
.chorus
:
150 #print "---partie---"
151 repeats
= len(verse
[0].lyrics
)
153 for i
in range(repeats
) :
155 #print "---couplet%d---" % i
159 #print "---refrain---"
160 for note
in self
.chorus
:
167 for note
, verseIndex
in self
.iterNotes(indefinitely
=False) :
168 print note
, note
.lyrics
[verseIndex
]
171 def assignNotesFromMidiNoteNumbers(self
):
172 # TODO faire le mapping bande hauteur midi
173 for i
in range(len(self
.midiNoteNumbers
)):
174 noteInExtendedScale
= 0
175 while self
.midiNoteNumbers
[i
] > self
.scale
[noteInExtendedScale
] and noteInExtendedScale
< len(self
.scale
)-1:
176 noteInExtendedScale
+= 1
177 if self
.midiNoteNumbers
[i
]<self
.scale
[noteInExtendedScale
]:
178 noteInExtendedScale
-= 1
179 self
.notes
.append(noteInExtendedScale
)
182 class Barline(object) :
184 def __init__(self
, node
, measureNotes
) :
186 location
= self
.location
= node
.getAttribute('location') or 'right'
188 repeatN
= node
.getElementsByTagName('repeat')[0]
189 repeat
= {'direction' : repeatN
.getAttribute('direction'),
190 'times' : int(repeatN
.getAttribute('times') or 1)}
191 if location
== 'left' :
192 repeat
['note'] = measureNotes
[0]
193 elif location
== 'right' :
194 repeat
['note'] = measureNotes
[-1]
196 raise ValueError(location
)
203 if self
.location
== 'left' :
205 elif self
.location
== 'right' :
215 def midi_to_step_alter_octave(midi
):
216 stepIndex
= midi
% 12
217 step
, alter
= CHROM_SCALE
[stepIndex
]
218 octave
= midi
/ 12 - 1
219 return step
, alter
, octave
222 def __init__(self
, *args
) :
224 self
.step
, self
.alter
, self
.octave
= args
225 elif len(args
) == 1 :
227 self
.step
, self
.alter
, self
.octave
= Tone
.midi_to_step_alter_octave(midi
)
231 mid
= DIATO_SCALE
[self
.step
]
232 mid
= mid
+ (self
.octave
- OCTAVE_REF
) * 12
233 mid
= mid
+ self
.alter
239 name
= u
'%s%d' % (self
.step
, self
.octave
)
244 name
= '%s%s' % (name
, abs(self
.alter
) * alterext
)
249 name
= FR_NOTES
[self
.step
]
254 name
= u
'%s%s' % (name
, abs(self
.alter
) * alterext
)
260 scale
= [55, 57, 59, 60, 62, 64, 65, 67, 69, 71, 72]
262 def __init__(self
, node
, divisions
, previous
) :
265 self
.tiedStart
= False
266 self
.tiedStop
= False
268 tieds
= _getElementsByPath(node
, 'notations/tied', [])
270 if tied
.getAttribute('type') == 'start' :
271 self
.tiedStart
= True
272 elif tied
.getAttribute('type') == 'stop' :
275 self
.step
= _getNodeValue(node
, 'pitch/step', None)
276 if self
.step
is not None :
277 self
.octave
= int(_getNodeValue(node
, 'pitch/octave'))
278 self
.alter
= int(_getNodeValue(node
, 'pitch/alter', 0))
279 elif self
.node
.getElementsByTagName('rest') :
282 NotImplementedError(self
.node
.toxml('utf-8'))
284 self
._duration
= float(_getNodeValue(node
, 'duration'))
286 for ly
in node
.getElementsByTagName('lyric') :
287 self
.lyrics
.append(Lyric(ly
))
289 self
.divisions
= divisions
290 self
.previous
= previous
294 return (u
'%5s %2s %2d %4s' % (self
.nom
, self
.name
, self
.midi
, round(self
.duration
, 2))).encode('utf-8')
297 return self
.name
.encode('utf-8')
299 def addDuration(self
, note
) :
300 self
._duration
= self
.duration
+ note
.duration
305 return self
._duration
/ self
.divisions
309 return self
.scale
.index(self
.midi
)
312 class Lyric(object) :
314 _syllabicModifiers
= {
317 'middle' : u
'- %s -',
321 def __init__(self
, node
) :
323 self
.syllabic
= _getNodeValue(node
, 'syllabic', 'single')
324 self
.text
= _getNodeValue(node
, 'text')
327 text
= self
._syllabicModifiers
[self
.syllabic
] % self
.text
331 return self
.syllabus().encode('utf-8')
337 def _getNodeValue(node
, path
, default
=_marker
) :
339 for name
in path
.split('/') :
340 node
= node
.getElementsByTagName(name
)[0]
341 return node
.firstChild
.nodeValue
343 if default
is _marker
:
348 def _getElementsByPath(node
, path
, default
=_marker
) :
350 parts
= path
.split('/')
351 for name
in parts
[:-1] :
352 node
= node
.getElementsByTagName(name
)[0]
353 return node
.getElementsByTagName(parts
[-1])
355 if default
is _marker
:
360 def musicXml2Song(input, partIndex
=0, autoDetectChorus
=True, printNotes
=False) :
361 if isinstance(input, StringTypes
) :
362 input = open(input, 'r')
365 doc
= d
.documentElement
367 # TODO conversion préalable score-timewise -> score-partwise
368 assert doc
.nodeName
== u
'score-partwise'
370 parts
= doc
.getElementsByTagName('part')
371 leadPart
= parts
[partIndex
]
373 part
= Part(leadPart
, autoDetectChorus
=autoDetectChorus
)
383 usage
= "%prog musicXmlFile.xml [options]"
384 op
= OptionParser(usage
)
385 op
.add_option("-i", "--part-index", dest
="partIndex"
387 , help = "Index de la partie qui contient le champ.")
389 op
.add_option("-p", '--print', dest
='printNotes'
390 , action
="store_true"
392 , help = "Affiche les notes sur la sortie standard (debug)")
394 op
.add_option("-c", '--no-chorus', dest
='autoDetectChorus'
395 , action
="store_false"
397 , help = "désactive la détection du refrain")
400 options
, args
= op
.parse_args()
403 raise SystemExit(op
.format_help())
405 musicXml2Song(args
[0],
406 partIndex
=options
.partIndex
,
407 autoDetectChorus
=options
.autoDetectChorus
,
408 printNotes
=options
.printNotes
)
411 if __name__
== '__main__' :