lilypond-user
[Top][All Lists]
Advanced

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

Re: Set midi volume per voice?


From: Nathan
Subject: Re: Set midi volume per voice?
Date: Sat, 11 May 2013 10:43:20 -0700

On Fri, May 10, 2013 at 4:20 PM, <address@hidden> wrote:

Hi list,

Is it possible to set the volume of the midi tracks for each different track?

(Sorry, I had this message in Drafts and I forgot to send it.)

Use midiMinimumVolume and midiMaximumVolume to set the volume ranges of each staff or voice.

They don't seem to have any effect if you don't place any dynamics.

\score {
  <<
    \new Staff \with {
      midiMinimumVolume = #0.0
      midiMaximumVolume = #0.5
    } {
      c'4\f c' c' c' c' c' c' c'
    }
    \new Staff \with {
      midiMinimumVolume = #0.5
      midiMaximumVolume = #1.0
    } {
      g'4\f g' g' g' g' g' g' g'
    }
  >>
  \midi { }
}

See http://www.lilypond.org/doc/v2.16/Documentation/notation/controlling-midi-dynamics.



Regards,
Nathan

reply via email to

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