music21.braille.segment¶
Inner classes and methods for transcribing musical segments into braille.
This module was made in consultation with the manual “Introduction to Braille Music Transcription, Second Edition” by Mary Turner De Garmo, 2005. It is available from the Library of Congress here, and will henceforth be referred to as BMTM.
Functions¶
-
music21.braille.segment.
areGroupingsIdentical
(noteGroupingA, noteGroupingB)¶ Takes in two note groupings, noteGroupingA and noteGroupingB. Returns True if both groupings have identical contents. False otherwise.
Helper for numRepeats...
Needs two identical length groupings.
>>> a = [note.Note('C4'), note.Note('D4')] >>> b = [note.Note('C4'), note.Note('D4')] >>> braille.segment.areGroupingsIdentical(a, b) True
>>> d = b.pop() >>> braille.segment.areGroupingsIdentical(a, b) False >>> c = [note.Rest(), note.Note('D4')] >>> braille.segment.areGroupingsIdentical(a, c) False
-
music21.braille.segment.
extractBrailleElements
(music21Measure)¶ Takes in a
Measure
and returns aBrailleElementGrouping
of correctly orderedMusic21Object
instances which can be directly transcribed to braille.>>> from music21.braille import segment >>> tn = converter.parse("tinynotation: 2/4 c16 c c c d d d d", makeNotation=False) >>> tn = tn.makeNotation(cautionaryNotImmediateRepeat=False) >>> measure = tn[0] >>> measure.append(spanner.Slur(measure.notes[0],measure.notes[-1])) >>> measure.show("text") {0.0} <music21.clef.TrebleClef> {0.0} <music21.meter.TimeSignature 2/4> {0.0} <music21.note.Note C> {0.25} <music21.note.Note C> {0.5} <music21.note.Note C> {0.75} <music21.note.Note C> {1.0} <music21.note.Note D> {1.25} <music21.note.Note D> {1.5} <music21.note.Note D> {1.75} <music21.note.Note D> {2.0} <music21.spanner.Slur <music21.note.Note C><music21.note.Note D>> {2.0} <music21.bar.Barline style=final>
Spanners are dealt with in
prepareSlurredNotes()
, so they are not returned by this method, as seen below.>>> segment.extractBrailleElements(measure) <music21.meter.TimeSignature 2/4> <music21.clef.TrebleClef> <music21.note.Note C> <music21.note.Note C> <music21.note.Note C> <music21.note.Note C> <music21.note.Note D> <music21.note.Note D> <music21.note.Note D> <music21.note.Note D> <music21.bar.Barline style=final>
-
music21.braille.segment.
findSegments
(music21Part, **partKeywords)¶ Takes in a
Part
and a list of partKeywords.Returns a list of
BrailleSegment
instances.Five methods get called in the generation of segments:
prepareSlurredNotes()
getRawSegments()
addGroupingAttributes()
addSegmentAttributes()
fixArticulations()
>>> from music21.braille import test >>> example = test.example11_2() >>> allSegments = braille.segment.findSegments(example) >>> print(str(allSegments[0])) ---begin segment--- <music21.braille.segment BrailleSegment> Measure 0, Signature Grouping 1: <music21.key.KeySignature of 3 flats> <music21.meter.TimeSignature 4/4> === Measure 0, Note Grouping 1: <music21.clef.TrebleClef> <music21.note.Note B-> === Measure 1, Note Grouping 1: <music21.note.Note G> <music21.note.Note E-> <music21.note.Note D> <music21.note.Note E-> === Measure 2, Note Grouping 1: <music21.note.Note G> <music21.note.Note F> <music21.note.Note E-> === Measure 3, Note Grouping 1: <music21.note.Note A-> <music21.note.Note G> <music21.note.Note C> <music21.note.Note C> === Measure 4, Note Grouping 1: <music21.note.Note B-> <music21.note.Note B-> === Measure 5, Note Grouping 1: <music21.note.Note E-> <music21.note.Note B-> <music21.note.Note A-> <music21.note.Note G> === Measure 6, Note Grouping 1: <music21.note.Note G> <music21.note.Note F> <music21.note.Note C> === Measure 7, Note Grouping 1: <music21.note.Note C> <music21.note.Note F> <music21.note.Note A-> <music21.note.Note D> === Measure 8, Note Grouping 1: <music21.note.Note E-> music hyphen ⠐ === ---end segment---
Second segment
>>> print(str(allSegments[1])) ---begin segment--- <music21.braille.segment BrailleSegment> Measure 8, Note Grouping 1: <music21.note.Note G> === Measure 9, Note Grouping 1: <music21.note.Note G> <music21.note.Note F> <music21.note.Note F> <music21.note.Note F> === Measure 10, Note Grouping 1: <music21.note.Note A-> <music21.note.Note G> <music21.note.Note B-> === Measure 11, Note Grouping 1: <music21.note.Note B-> <music21.note.Note A> <music21.note.Note A> <music21.note.Note C> === Measure 12, Note Grouping 1: <music21.note.Note B-> <music21.note.Note B-> === Measure 13, Note Grouping 1: <music21.note.Note E-> <music21.note.Note B-> <music21.note.Note A-> <music21.note.Note G> === Measure 14, Note Grouping 1: <music21.note.Note G> <music21.note.Note F> <music21.note.Note C> === Measure 15, Note Grouping 1: <music21.note.Note C> <music21.note.Rest rest> <music21.note.Note F> <music21.note.Rest rest> === Measure 16, Note Grouping 1: <music21.note.Note A-> <music21.note.Note D> === Measure 17, Note Grouping 1: <music21.note.Note E-> <music21.bar.Barline style=final> === ---end segment---
-
music21.braille.segment.
getRawSegments
(music21Part, setHand=None)¶ Takes in a
Part
divided it up into segments (i.e. instances ofBrailleSegment
). This method assumes that the Part is already divided up into measures (seeMeasure
). An acceptable input is shown below.This will automatically find appropriate segment breaks at braille.objects.BrailleSegmentBreak or braille.objects.BrailleOptionalSegmentBreak or after 48 elements if a double bar or repeat sign is encountered.
Two methods are called on each measure during the creation of segments:
>>> tn = converter.parse("tinynotation: 3/4 c4 c c e e e g g g c'2.") >>> tn = tn.makeNotation(cautionaryNotImmediateRepeat=False) >>> tn.show("text") {0.0} <music21.stream.Measure 1 offset=0.0> {0.0} <music21.clef.TrebleClef> {0.0} <music21.meter.TimeSignature 3/4> {0.0} <music21.note.Note C> {1.0} <music21.note.Note C> {2.0} <music21.note.Note C> {3.0} <music21.stream.Measure 2 offset=3.0> {0.0} <music21.note.Note E> {1.0} <music21.note.Note E> {2.0} <music21.note.Note E> {6.0} <music21.stream.Measure 3 offset=6.0> {0.0} <music21.note.Note G> {1.0} <music21.note.Note G> {2.0} <music21.note.Note G> {9.0} <music21.stream.Measure 4 offset=9.0> {0.0} <music21.note.Note C> {3.0} <music21.bar.Barline style=final>
By default, there is no break anywhere within the Part, and a segmentList of size 1 is returned.
>>> import copy >>> from music21.braille import segment >>> tnA = copy.deepcopy(tn) >>> rawSegments = segment.getRawSegments(tnA) >>> len(rawSegments) 1 >>> rawSegments[0] ---begin segment--- <music21.braille.segment BrailleSegment> Measure 1, Signature Grouping 1: <music21.meter.TimeSignature 3/4> === Measure 1, Note Grouping 1: <music21.clef.TrebleClef> <music21.note.Note C> <music21.note.Note C> <music21.note.Note C> === Measure 2, Note Grouping 1: <music21.note.Note E> <music21.note.Note E> <music21.note.Note E> === Measure 3, Note Grouping 1: <music21.note.Note G> <music21.note.Note G> <music21.note.Note G> === Measure 4, Note Grouping 1: <music21.note.Note C> <music21.bar.Barline style=final> === ---end segment---
Now, a segment break occurs at measure 2, offset 1.0 within that measure. The two segments are shown below.
>>> tnB = copy.deepcopy(tn) >>> tnB.measure(2).insert(1.0, braille.objects.BrailleSegmentDivision()) >>> allSegments = segment.getRawSegments(tnB) >>> len(allSegments) 2
>>> allSegments[0] ---begin segment--- <music21.braille.segment BrailleSegment> Measure 1, Signature Grouping 1: <music21.meter.TimeSignature 3/4> === Measure 1, Note Grouping 1: <music21.clef.TrebleClef> <music21.note.Note C> <music21.note.Note C> <music21.note.Note C> === Measure 2, Note Grouping 1: <music21.note.Note E> === ---end segment---
>>> allSegments[1] ---begin segment--- <music21.braille.segment BrailleSegment> Measure 2, Note Grouping 1: <music21.note.Note E> <music21.note.Note E> === Measure 3, Note Grouping 1: <music21.note.Note G> <music21.note.Note G> <music21.note.Note G> === Measure 4, Note Grouping 1: <music21.note.Note C> <music21.bar.Barline style=final> === ---end segment---
-
music21.braille.segment.
prepareBeamedNotes
(music21Measure)¶ Takes in a
Measure
and labels beamed notes of smaller value than an 8th with beamStart and beamContinue keywords in accordance with beaming rules in braille music.A more in-depth explanation of beaming in braille can be found in Chapter 15 of Introduction to Braille Music Transcription, Second Edition, by Mary Turner De Garmo.
>>> from music21.braille import segment >>> tn = converter.parse("tinynotation: 2/4 c16 c c c d d d d") >>> tn = tn.makeNotation(cautionaryNotImmediateRepeat=False) >>> tn.show("text") {0.0} <music21.stream.Measure 1 offset=0.0> {0.0} <music21.clef.TrebleClef> {0.0} <music21.meter.TimeSignature 2/4> {0.0} <music21.note.Note C> {0.25} <music21.note.Note C> {0.5} <music21.note.Note C> {0.75} <music21.note.Note C> {1.0} <music21.note.Note D> {1.25} <music21.note.Note D> {1.5} <music21.note.Note D> {1.75} <music21.note.Note D> {2.0} <music21.bar.Barline style=final> >>> measure = tn[0] >>> segment.prepareBeamedNotes(measure) >>> measure.notes[0].beamStart True >>> measure.notes[1].beamContinue True >>> measure.notes[2].beamContinue True >>> measure.notes[3].beamContinue True
-
music21.braille.segment.
prepareSlurredNotes
(music21Part, **keywords)¶ Takes in a
Part
and three keywords:- slurLongPhraseWithBrackets
- showShortSlursAndTiesTogether
- showLongSlursAndTiesTogether
For any slurs present in the Part, the appropriate notes are labeled with attributes indicating where to put the symbols that represent slurring in braille. For purposes of slurring in braille, there is a distinction between short and long phrases. In a short phrase, a slur covers up to four notes. A short slur symbol should follow each note except the last.
>>> import copy >>> from music21.braille import segment >>> short = converter.parse("tinynotation: 3/4 c4 d e") >>> s1 = spanner.Slur(short.flat.notes[0], short.flat.notes[-1]) >>> short.append(s1) >>> short.show("text") {0.0} <music21.stream.Measure 1 offset=0.0> {0.0} <music21.clef.TrebleClef> {0.0} <music21.meter.TimeSignature 3/4> {0.0} <music21.note.Note C> {1.0} <music21.note.Note D> {2.0} <music21.note.Note E> {3.0} <music21.bar.Barline style=final> {3.0} <music21.spanner.Slur <music21.note.Note C><music21.note.Note E>> >>> shortA = copy.deepcopy(short) >>> segment.prepareSlurredNotes(shortA) >>> shortA.flat.notes[0].shortSlur True >>> shortA.flat.notes[1].shortSlur True
In a long phrase, a slur covers more than four notes. There are two options for slurring long phrases. The first is by using the bracket slur. By default, slurLongPhraseWithBrackets is True. The opening bracket sign is put before the first note, and the closing bracket sign is put before the last note.
>>> long = converter.parse("tinynotation: 3/4 c8 d e f g a") >>> s2 = spanner.Slur(long.flat.notes[0], long.flat.notes[-1]) >>> long.append(s2) >>> long.show("text") {0.0} <music21.stream.Measure 1 offset=0.0> {0.0} <music21.clef.TrebleClef> {0.0} <music21.meter.TimeSignature 3/4> {0.0} <music21.note.Note C> {0.5} <music21.note.Note D> {1.0} <music21.note.Note E> {1.5} <music21.note.Note F> {2.0} <music21.note.Note G> {2.5} <music21.note.Note A> {3.0} <music21.bar.Barline style=final> {3.0} <music21.spanner.Slur <music21.note.Note C><music21.note.Note A>> >>> longA = copy.deepcopy(long) >>> segment.prepareSlurredNotes(longA) >>> longA.flat.notes[0].beginLongBracketSlur True >>> longA.flat.notes[-1].endLongBracketSlur True
The other way is by using the double slur, setting slurLongPhraseWithBrackets to False. The opening sign of the double slur is put after the first note (i.e. before the second note) and the closing sign is put before the last note (i.e. before the second to last note).
>>> longB = copy.deepcopy(long) >>> segment.prepareSlurredNotes(longB, slurLongPhraseWithBrackets=False) >>> longB.flat.notes[1].beginLongDoubleSlur True >>> longB.flat.notes[-2].endLongDoubleSlur True
In the event that slurs and ties are shown together in print, the slur is redundant. Examples are shown for slurring a short phrase; the process is identical for slurring a long phrase.
Below, a tie has been added between the first two notes of the short phrase defined above. If showShortSlursAndTiesTogether is set to its default value of False, then the slur on either side of the phrase is reduced by the amount that ties are present, as shown below.
>>> short.flat.notes[0].tie = tie.Tie("start") >>> shortB = copy.deepcopy(short) >>> segment.prepareSlurredNotes(shortB) >>> shortB.flat.notes[0].shortSlur Traceback (most recent call last): AttributeError: 'Note' object has no attribute 'shortSlur' >>> shortB.flat.notes[0].tie <music21.tie.Tie start> >>> shortB.flat.notes[1].shortSlur True
If showShortSlursAndTiesTogether is set to True, then the slurs and ties are shown together (i.e. the note has both a shortSlur and a tie).
>>> shortC = copy.deepcopy(short) >>> segment.prepareSlurredNotes(shortC, showShortSlursAndTiesTogether=True) >>> shortC.flat.notes[0].shortSlur True >>> shortC.flat.notes[0].tie <music21.tie.Tie start>
TODO: This should not add attributes to Note objects but instead return a collection of sets of notes that have each element applied to it.
-
music21.braille.segment.
setAffinityCode
(music21Object)¶ Takes in a
Music21Object
, and does two things:- Modifies the
classSortOrder
attribute of the object to fit the slightly modified ordering of objects in braille music. - Adds an affinity code to the object. This code indicates which surrounding objects the object should be grouped with.
A BrailleSegmentException is raised if an affinity code cannot be assigned to the object.
As seen in the following example, the affinity code of a
Note
and aTrebleClef
are the same, because they should be grouped together. However, the classSortOrder indicates that the TrebleClef should come first in the braille.>>> n1 = note.Note("D5") >>> braille.segment.setAffinityCode(n1) >>> n1.affinityCode <Affinity.NOTEGROUP: 9> >>> n1.classSortOrder 10 >>> c1 = clef.TrebleClef() >>> braille.segment.setAffinityCode(c1) >>> c1.affinityCode <Affinity.NOTEGROUP: 9> >>> c1.classSortOrder 7
- Modifies the
-
music21.braille.segment.
setGroupingGlobals
()¶ sets defaults for grouping globals. Called first time anything in Braille is run, but saves creating two expensive objects if never run
-
music21.braille.segment.
splitMeasure
(music21Measure, beatDivisionOffset=0, useTimeSignature=None)¶ Takes a
Measure
, divides it in two parts, and returns a two-tuple of (leftMeasure, rightMeasure). The parameters are as follows:- beatDivisionOffset => Adjusts the end offset of the first partition by a certain amount of beats to the left.
- useTimeSignature => In the event that the Measure comes from the middle of a Part
and thus does not define an explicit
TimeSignature
. If not provided, a TimeSignature is retrieved by usingbestTimeSignature()
.
-
music21.braille.segment.
splitNoteGrouping
(noteGrouping, beatDivisionOffset=0)¶ Almost identical to
splitMeasure()
, but functions on aBrailleElementGrouping
instead.
BrailleElementGrouping¶
-
class
music21.braille.segment.
BrailleElementGrouping
(*args)¶
BrailleElementGrouping
instance variables
-
BrailleElementGrouping.
descendingChords
¶ True if a
Chord
should be spelled from highest to lowest pitch in braille, False if the opposite is the case.
-
BrailleElementGrouping.
keySignature
¶ The last
KeySignature
preceding the grouping.
-
BrailleElementGrouping.
numRepeats
¶ The number of times this grouping is repeated.
-
BrailleElementGrouping.
showClefSigns
¶ If True, clef signs are shown in braille. Representation of music in braille is not dependent upon clefs and staves, so the clef signs would be displayed for referential or historical purposes.
-
BrailleElementGrouping.
timeSignature
¶ The last
TimeSignature
preceding the grouping.
-
BrailleElementGrouping.
withHyphen
¶ If True, this grouping will end with a music hyphen.
BrailleGrandSegment¶
-
class
music21.braille.segment.
BrailleGrandSegment
¶ A BrailleGrandSegment represents a pair of segments (rightSegment, leftSegment) representing the right and left hands of a piano staff (or other two-staff object)
BrailleGrandSegment
bases
BrailleGrandSegment
read-only properties
-
BrailleGrandSegment.
brailleText
¶
BrailleGrandSegment
read/write properties
Read/write properties inherited from BrailleText
:
BrailleGrandSegment
methods
-
BrailleGrandSegment.
extractHeading
()¶
-
BrailleGrandSegment.
extractNoteGrouping
()¶
-
BrailleGrandSegment.
transcribe
()¶ TODO: define this method
-
BrailleGrandSegment.
yieldCombinedGroupingKeys
()¶ yields all the keys in order as a tuple of (rightKey, leftKey) where two keys are grouped if they have the same segmentKey except for the hand.
>>> bgs = braille.segment.BrailleGrandSegment() >>> SegmentKey = braille.segment.SegmentKey # namedtuple >>> bgs[SegmentKey(1, 1, 1, 'right')] = "1r" >>> bgs[SegmentKey(1, 1, 1, 'left')] = "1l" >>> bgs[SegmentKey(1, 2, 3, 'right')] = "2r" >>> bgs[SegmentKey(1, 2, 4, 'left')] = "3l" >>> bgs[SegmentKey(2, 1, 9, 'left')] = "4l" >>> bgs[SegmentKey(2, 1, 9, 'right')] = "4r" >>> bgs[SegmentKey(3, 1, 9, 'right')] = "5r" >>> for l, r in bgs.yieldCombinedGroupingKeys(): ... (bgs[l], bgs[r]) ('1r', '1l') ('2r', ) (, '3l') ('4r', '4l') ('5r', )
Methods inherited from BrailleSegment
:
Methods inherited from BrailleKeyboard
:
Methods inherited from BrailleText
:
BrailleGrandSegment
instance variables
Instance variables inherited from BrailleSegment
:
BrailleSegment¶
-
class
music21.braille.segment.
BrailleSegment
¶
BrailleSegment
bases
BrailleSegment
read-only properties
-
BrailleSegment.
brailleText
¶
BrailleSegment
read/write properties
Read/write properties inherited from BrailleText
:
BrailleSegment
methods
-
BrailleSegment.
addDummyRests
()¶ Adds as many dummy rests as self.dummyRestLength to the signatures of brailleText
>>> seg = braille.segment.BrailleSegment() >>> seg.dummyRestLength = 4
>>> print(braille.lookup.rests['dummy']) ⠄ >>> seg.addDummyRests() >>> print(seg.brailleText) ⠄⠄⠄⠄
-
BrailleSegment.
addGroupingAttributes
(**partKeywords)¶ Modifies the attributes of all
BrailleElementGrouping
instances in a list ofBrailleSegment
instances. The necessary information is retrieved both by passing in partKeywords as an argument and by taking into account the linear progression of the groupings and segments.
-
BrailleSegment.
addRepeatSymbols
(repeatTimes)¶ Adds the appropriate number of repeat symbols, following DeGarmo chapter 17.
>>> seg = braille.segment.BrailleSegment() >>> seg.addRepeatSymbols(0) >>> print(seg.brailleText) >>> seg.addRepeatSymbols(1) >>> print(seg.brailleText) ⠶
>>> seg = braille.segment.BrailleSegment() >>> seg.addRepeatSymbols(2) >>> print(seg.brailleText) ⠶⠀⠶
>>> seg = braille.segment.BrailleSegment() >>> seg.addRepeatSymbols(3) >>> print(seg.brailleText) ⠶⠼⠉
Does not yet handle situations beginning with Example 17-6 (repeats at different octaves), and further
-
BrailleSegment.
addSegmentAttributes
(**partKeywords)¶ Modifies the attributes of a
BrailleSegment
by passing partKeywords as an argument.
-
BrailleSegment.
consolidate
()¶ Puts together certain types of elements according to the last digit of their key (if it is the same as Affinity.NOTEGROUP or not.
>>> SK = braille.segment.SegmentKey >>> BS1 = braille.segment.BrailleSegment() >>> BS1[SK(ordinal=0, affinity=2)] = ['hi', 'hello', 'there'] >>> BS1[SK(ordinal=1, affinity=9)] = ['these', 'get'] >>> BS1[SK(ordinal=2, affinity=9)] = ['put', 'together'] >>> BS1[SK(ordinal=3, affinity=4)] = ['in', 'new', 'group'] >>> BS1[SK(ordinal=4, affinity=9)] = ['with', 'the', 'previous'] >>> BS2 = BS1.consolidate() >>> for (groupingKey, groupingList) in sorted(BS2.items()): ... print(groupingKey, groupingList) SegmentKey(measure=0, ordinal=0, affinity=2, hand=None) ['hi', 'hello', 'there'] SegmentKey(measure=0, ordinal=1, affinity=9, hand=None) these get put together SegmentKey(measure=0, ordinal=3, affinity=4, hand=None) ['in', 'new', 'group'] SegmentKey(measure=0, ordinal=4, affinity=9, hand=None) with the previous
-
BrailleSegment.
extractHeading
()¶ Extract a
KeySignature
,TempoText
andMetronomeMark
and add an appropriate braille heading to the brailleText object inputted.
-
BrailleSegment.
extractLongExpressionGrouping
()¶ Extract the Long Expression that is in the ElementGrouping in cgk and add it to brailleText.
-
BrailleSegment.
extractMeasureNumber
()¶ Adds a measure number from the segmentKey needing processing
>>> segKey = braille.segment.SegmentKey(measure=4, ordinal=1, affinity=9) >>> seg = braille.segment.BrailleSegment()
Initialize a new Key
>>> type(seg[segKey]) <class 'music21.braille.segment.BrailleElementGrouping'> >>> seg.extractMeasureNumber() >>> print(seg.brailleText) ⠼⠙
Add a dot to the measure number if the segment begins mid-measure
>>> seg = braille.segment.BrailleSegment() >>> seg[segKey] >>> seg.beginsMidMeasure = True >>> seg.extractMeasureNumber() >>> print(seg.brailleText) ⠼⠙⠄
-
BrailleSegment.
extractNoteGrouping
()¶ Fundamentally important method that adds a noteGrouping to the braille line.
-
BrailleSegment.
extractSignatureGrouping
()¶ Extracts a key signature, time signature, and possibly an outgoing key signature and adds it to the BrailleText object.
-
BrailleSegment.
extractTempoTextGrouping
()¶ extracts a tempo text and processes it...
-
BrailleSegment.
fixArticulations
()¶ Goes through each
BrailleSegment
and modifies the list ofarticulations
of aNote
if appropriate. In particular, two rules are applied:- Doubling rule => If four or more of the same
Articulation
are found in a row, the first instance of the articulation is doubled and the rest are omitted. - Staccato, Tenuto rule => “If two repeated notes appear to be tied, but either is marked staccato or tenuto, they are treated as slurred instead of tied.” (BMTM, 112)
- Doubling rule => If four or more of the same
-
BrailleSegment.
init_defaults
()¶
-
BrailleSegment.
needsSplitToFit
(brailleNoteGrouping)¶ Returns boolean on whether a note grouping needs to be split in order to fit.
Generally a noteGrouping will need to be split if the amount of space left is more than 1/4 of the line length and the brailleNoteGrouping cannot fit.
-
BrailleSegment.
showLeadingOctaveFromNoteGrouping
(noteGrouping)¶ Given a noteGrouping, should we show the octave symbol?
>>> n1 = note.Note('C1') >>> n2 = note.Note('D1') >>> n3 = note.Note('E1')
>>> beg1 = braille.segment.BrailleElementGrouping([n1, n2, n3]) >>> bs1 = braille.segment.BrailleSegment()
This is True because last note is None
>>> bs1.lastNote is None True >>> bs1.showLeadingOctaveFromNoteGrouping(beg1) True
But if we run it again, now we have a note within a fourth, so we do not need to show the octave:
>>> bs1.lastNote <music21.note.Note E> >>> bs1.showLeadingOctaveFromNoteGrouping(beg1) False
And that is true no matter how many ties we call it on the same BrailleElementGrouping:
>>> bs1.showLeadingOctaveFromNoteGrouping(beg1) False
But if we give a new, much higher BrailleElementGrouping, we will see octave marks again.
>>> nHigh1 = note.Note('C6') >>> nHigh2 = note.Note('D6') >>> beg2 = braille.segment.BrailleElementGrouping([nHigh1, nHigh2]) >>> bs1.showLeadingOctaveFromNoteGrouping(beg2) True
But if we set self.suppressOctaveMarks to True, we won’t see any when we switch back to beg1:
>>> bs1.suppressOctaveMarks = True >>> bs1.showLeadingOctaveFromNoteGrouping(beg2) False
We also show octaves if for some reason two noteGroups in the same measure have different BrailleElementGroupings keyed to consecutive ordinals. The code simulates that situation.
>>> bs1.suppressOctaveMarks = False >>> bs1.previousGroupingKey = braille.segment.SegmentKey(measure=3, ordinal=1, ... affinity=braille.segment.Affinity.NOTEGROUP) >>> bs1.currentGroupingKey = braille.segment.SegmentKey(measure=3, ordinal=2, ... affinity=braille.segment.Affinity.NOTEGROUP) >>> bs1.showLeadingOctaveFromNoteGrouping(beg2) True >>> bs1.showLeadingOctaveFromNoteGrouping(beg1) True >>> bs1.showLeadingOctaveFromNoteGrouping(beg1) True
-
BrailleSegment.
splitNoteGroupingAndTranscribe
(noteGrouping, showLeadingOctaveOnFirst=False, addSpaceToFirst=False)¶ Take a noteGrouping and split it at a logical place, returning braille transcriptions of each section.
-
BrailleSegment.
transcribe
()¶ transcribes all of the noteGroupings in this dict by:
first transcribing the Heading (if applicable) then the Measure Number then adds appropriate numbers of dummyRests then adds the Rest of the Note Groupings
returns brailleText
Methods inherited from BrailleText
:
BrailleSegment
instance variables
-
BrailleSegment.
beginsMidMeasure
¶ If True, then the initial measure number of this segment should be followed by a dot. This segment is starting in the middle of a measure.
-
BrailleSegment.
cancelOutgoingKeySig
¶ If True, the previous key signature should be cancelled immediately before a new key signature is encountered.
-
BrailleSegment.
dummyRestLength
¶ For a given positive integer n, adds n “dummy rests” near the beginning of a segment. Designed for test purposes, as they are used to demonstrate measure division at the end of braille lines.
-
BrailleSegment.
endHyphen
¶ If True, then the last
BrailleElementGrouping
of this segment will be followed by a music hyphen. The last grouping is incomplete, because a segment break occured in the middle of a measure.
-
BrailleSegment.
lineLength
¶ The maximum amount of braille characters that should be present in a line. The standard is 40 characters.
-
BrailleSegment.
showFirstMeasureNumber
¶ If True, then a measure number is shown following the heading (if applicable) and preceding the music.
-
BrailleSegment.
showHand
¶ If set to “right” or “left”, shows the corresponding hand sign at the beginning of the first line.
-
BrailleSegment.
showHeading
¶ If True, then a braille heading is displayed. See
transcribeHeading()
for more details on headings.
-
BrailleSegment.
suppressOctaveMarks
¶ If True, then all octave marks are suppressed. Designed for test purposes, as octave marks were not presented until Chapter 7 of BMTM.