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 def intervalsHistogram(self
) :
169 it
= self
.iterNotes()
170 previousNote
= it
.next()[0]
172 interval
= note
.midi
- previousNote
.midi
173 if histogram
.has_key(interval
) :
174 histogram
[interval
] += 1
176 histogram
[interval
] = 1
181 for note
, verseIndex
in self
.iterNotes(indefinitely
=False) :
182 print note
, note
.lyrics
[verseIndex
]
185 def assignNotesFromMidiNoteNumbers(self
):
186 # TODO faire le mapping bande hauteur midi
187 for i
in range(len(self
.midiNoteNumbers
)):
188 noteInExtendedScale
= 0
189 while self
.midiNoteNumbers
[i
] > self
.scale
[noteInExtendedScale
] and noteInExtendedScale
< len(self
.scale
)-1:
190 noteInExtendedScale
+= 1
191 if self
.midiNoteNumbers
[i
]<self
.scale
[noteInExtendedScale
]:
192 noteInExtendedScale
-= 1
193 self
.notes
.append(noteInExtendedScale
)
196 class Barline(object) :
198 def __init__(self
, node
, measureNotes
) :
200 location
= self
.location
= node
.getAttribute('location') or 'right'
202 repeatN
= node
.getElementsByTagName('repeat')[0]
203 repeat
= {'direction' : repeatN
.getAttribute('direction'),
204 'times' : int(repeatN
.getAttribute('times') or 1)}
205 if location
== 'left' :
206 repeat
['note'] = measureNotes
[0]
207 elif location
== 'right' :
208 repeat
['note'] = measureNotes
[-1]
210 raise ValueError(location
)
217 if self
.location
== 'left' :
219 elif self
.location
== 'right' :
229 def midi_to_step_alter_octave(midi
):
230 stepIndex
= midi
% 12
231 step
, alter
= CHROM_SCALE
[stepIndex
]
232 octave
= midi
/ 12 - 1
233 return step
, alter
, octave
236 def __init__(self
, *args
) :
238 self
.step
, self
.alter
, self
.octave
= args
239 elif len(args
) == 1 :
241 self
.step
, self
.alter
, self
.octave
= Tone
.midi_to_step_alter_octave(midi
)
245 mid
= DIATO_SCALE
[self
.step
]
246 mid
= mid
+ (self
.octave
- OCTAVE_REF
) * 12
247 mid
= mid
+ self
.alter
253 name
= u
'%s%d' % (self
.step
, self
.octave
)
258 name
= '%s%s' % (name
, abs(self
.alter
) * alterext
)
263 name
= FR_NOTES
[self
.step
]
268 name
= u
'%s%s' % (name
, abs(self
.alter
) * alterext
)
274 scale
= [55, 57, 59, 60, 62, 64, 65, 67, 69, 71, 72]
276 def __init__(self
, node
, divisions
, previous
) :
279 self
.tiedStart
= False
280 self
.tiedStop
= False
282 tieds
= _getElementsByPath(node
, 'notations/tied', [])
284 if tied
.getAttribute('type') == 'start' :
285 self
.tiedStart
= True
286 elif tied
.getAttribute('type') == 'stop' :
289 self
.step
= _getNodeValue(node
, 'pitch/step', None)
290 if self
.step
is not None :
291 self
.octave
= int(_getNodeValue(node
, 'pitch/octave'))
292 self
.alter
= int(_getNodeValue(node
, 'pitch/alter', 0))
293 elif self
.node
.getElementsByTagName('rest') :
296 NotImplementedError(self
.node
.toxml('utf-8'))
298 self
._duration
= float(_getNodeValue(node
, 'duration'))
300 for ly
in node
.getElementsByTagName('lyric') :
301 self
.lyrics
.append(Lyric(ly
))
303 self
.divisions
= divisions
304 self
.previous
= previous
308 return (u
'%5s %2s %2d %4s' % (self
.nom
, self
.name
, self
.midi
, round(self
.duration
, 2))).encode('utf-8')
311 return self
.name
.encode('utf-8')
313 def addDuration(self
, note
) :
314 self
._duration
= self
.duration
+ note
.duration
319 return self
._duration
/ self
.divisions
323 return self
.scale
.index(self
.midi
)
326 class Lyric(object) :
328 _syllabicModifiers
= {
331 'middle' : u
'- %s -',
335 def __init__(self
, node
) :
337 self
.syllabic
= _getNodeValue(node
, 'syllabic', 'single')
338 self
.text
= _getNodeValue(node
, 'text')
341 text
= self
._syllabicModifiers
[self
.syllabic
] % self
.text
345 return self
.syllabus().encode('utf-8')
351 def _getNodeValue(node
, path
, default
=_marker
) :
353 for name
in path
.split('/') :
354 node
= node
.getElementsByTagName(name
)[0]
355 return node
.firstChild
.nodeValue
357 if default
is _marker
:
362 def _getElementsByPath(node
, path
, default
=_marker
) :
364 parts
= path
.split('/')
365 for name
in parts
[:-1] :
366 node
= node
.getElementsByTagName(name
)[0]
367 return node
.getElementsByTagName(parts
[-1])
369 if default
is _marker
:
374 def musicXml2Song(input, partIndex
=0, autoDetectChorus
=True, printNotes
=False) :
375 if isinstance(input, StringTypes
) :
376 input = open(input, 'r')
379 doc
= d
.documentElement
381 # TODO conversion préalable score-timewise -> score-partwise
382 if doc
.nodeName
!= u
'score-partwise' :
383 raise ValueError('not a musicxml file')
385 parts
= doc
.getElementsByTagName('part')
386 leadPart
= parts
[partIndex
]
388 part
= Part(leadPart
, autoDetectChorus
=autoDetectChorus
)
398 usage
= "%prog musicXmlFile.xml [options]"
399 op
= OptionParser(usage
)
400 op
.add_option("-i", "--part-index", dest
="partIndex"
402 , help = "Index de la partie qui contient le champ.")
404 op
.add_option("-p", '--print', dest
='printNotes'
405 , action
="store_true"
407 , help = "Affiche les notes sur la sortie standard (debug)")
409 op
.add_option("-c", '--no-chorus', dest
='autoDetectChorus'
410 , action
="store_false"
412 , help = "désactive la détection du refrain")
415 options
, args
= op
.parse_args()
418 raise SystemExit(op
.format_help())
420 song
= musicXml2Song(args
[0],
421 partIndex
=options
.partIndex
,
422 autoDetectChorus
=options
.autoDetectChorus
,
423 printNotes
=options
.printNotes
)
424 from pprint
import pprint
425 pprint(song
.intervalsHistogram
)
428 if __name__
== '__main__' :