Hi,

2010/12/13 MING TSANG <tsan...@rogers.com>:
> (1)  Where do I code the \set midiInstrument = ?
>
> (2)  I want to set each voice (S, A, T, B) with different midi -instrument.
> How can I code it?

Take a look at this example:

\new ChoirStaff <<
        \new Staff = soprano {
                \new Voice = soprano {
                        \set Voice.midiInstrument = "clarinet"
                        insert soprano notes here
                }
        }
        
        \new Staff = alto {
                \new Voice = alto {
                        \set Voice.midiInstrument = "english horn"
                        insert alto notes here
                }
        }
>>

You can also code instrument on staff level:

\new Staff = females {
        \set Staff.midiInstrument = "clarinet"
        \new Voice = soprano {
                insert soprano notes here
        }
        \new Voice = alto {
                insert alto notes here
        }
}

> (3)  How can I specify different sound volume for each voice?  I was hoping
> to empathize one particular voice for practise.

See Notation Reference 3.5.5, "equalizing different instruments"

> (4)  How to turn off cres. sound in midi sound file?

You can turn off all dynamics using this:

\midi {
        \context {
                \Voice
                        \remove "Dynamic_performer"
        }
}

Good luck :)
Janek

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to