lilypond-user-fr
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Un fichier MIDI pour chaque voix


From: Martial R
Subject: Re: Un fichier MIDI pour chaque voix
Date: Fri, 3 May 2019 11:14:29 +0200

bonjour,

Je n'ai aucun mérite, je pratique Lilypond depuis de nombreuses années.

J'avais mixé  les voix ensemble pour l'apprentissage, la voix du choriste étant plus forte.
On peut simplifier les midis  ainsi  :
%-------------------------------------------
%%MIDI TUTTI   
\book {
  \bookOutputSuffix "tutti"
  \score {
    \unfoldRepeats   { \pulse << \S \A \T \B >> }
    \midi { \tmpo }
  }
}

%%MIDI SOPRANES   
\book {
  \bookOutputSuffix "s"
  \score {
    \unfoldRepeats  { \pulse \S }
    \midi { \tmpo }
  }
}

%%MIDI ALTOS   
\book{
  \bookOutputSuffix "a"
  \score {
    \unfoldRepeats     { \pulse \A }
    \midi { }
  }
}
%%MIDI TENORS
\book {
  \bookOutputSuffix "t"
  \score {
    \unfoldRepeats  { \pulse \T }
    \midi { \tmpo }
  }
}
%%MIDI BASSES
\book {
  \bookOutputSuffix "b"
  \score {
    \unfoldRepeats { \pulse \B }
    \midi {    \tmpo }
  }
}
%----------------------------------

--
Martial


reply via email to

[Prev in Thread] Current Thread [Next in Thread]