usenetbinary-newsreaderqnaptautullifanartsickbeardtvseriesplexswizzinembyseedboxtvdbnzbgetsubtitlewebuiquickboxtraktkodistabletvshows
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
279 B
11 lines
279 B
11 years ago
|
"""
|
||
|
Shared code for tracker parser.
|
||
|
"""
|
||
|
|
||
|
NOTE_NAME = {}
|
||
|
NOTES = ("C", "C#", "D", "D#", "E", "F", "F#", "G", "G#", "G#", "A", "A#", "B")
|
||
|
for octave in xrange(10):
|
||
|
for index, note in enumerate(NOTES):
|
||
7 years ago
|
NOTE_NAME[octave * 12 + index] = "%s (octave %s)" % (note, octave)
|
||
11 years ago
|
|