Updates:
Labels: Patch-new
Comment #1 on issue 2672 by [email protected]: Patch: Midi fixes
http://code.google.com/p/lilypond/issues/detail?id=2672
First patch of four. When other MIDI midi events (such as an instrument
change) occur simultaneously with note(s), they should be placed in the
MIDI file before the note-on events, otherwise there is no way to
(reliably) affect the first note in a score.
S = { \key c \major \repeat unfold 2 { e'4 } e'2 }
A = { \repeat unfold 2 { e'4 } e'2 }
T = { \repeat unfold 2 { gis4 } gis2 }
B = { \repeat unfold 2 { e4 } e2 }
\score {
\new Staff = "Staff" \with { midiInstrument = #"choir aahs" } <<
\S \A \T \B >>
\midi { }
}
Version 2.15.41 produces piano for the first chord on most players, one
player chooses randomly choir or piano. The intent was for all notes to be
choir.
http://codereview.appspot.com/6420058