Re: midi \p \f volume

2016-10-31 Thread Sirius Barras
Thank you Vaughan, it works great!
g.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: midi \p \f volume

2016-10-31 Thread Vaughan McAlley
On 31 October 2016 at 18:52, Gianmaria Lari  wrote:
> If you don't use the dynamic mark from \p to \f but you limit
> yourseft from \p to \f, the midi output is often too tight.
>
> Is there any (easy) way to make the range from \p to \f playing as \p to
> \f?
> Thank you, g.
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user
>

Hi Gianmaria,

It looks like you can redefine the Scheme list of dynamics:

%%%
\version "2.18.2"

% Redefine what was set in ../scm/midi.scm
#(set! absolute-volume-alist
   (append
'(
("f" . 0.95)
("mf" . 0.75)
("mp" . 0.55)
("p" . 0.35)
)
absolute-volume-alist))

\score {
 \relative c' { c4\p d\mp e\mf f\f }
 \layout {}
 \midi {}
}



You can set the numbers to anything you like between 0 and 1.

Cheers,
Vaughan

___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


midi \p \f volume

2016-10-31 Thread Gianmaria Lari
If you don't use the dynamic mark from \p to \f but you limit
yourseft from \p to \f, the midi output is often too tight.

Is there any (easy) way to make the range from \p to \f playing as \p
to \f?
Thank you, g.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user