lilypond-user
[Top][All Lists]
Advanced

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

Re: midi tempo


From: Mike Solomon
Subject: Re: midi tempo
Date: Sun, 9 Nov 2014 19:33:49 +0200

> On Nov 9, 2014, at 7:19 PM, Noeck <address@hidden> wrote:
> 
> Hi,
> 
> I would like to specify a different tempo for the pdf and the midi
> output. I’ve read
> http://www.lilypond.org/doc/v2.18/Documentation/notation/displaying-rhythms.html#metronome-marks
> 
> But I found only how to specify it for both, or for one of them. What I
> want is like:
> \tempo "Allegro" 4 = 100
> which should show up as »Allegro«
> and the midi should be played as with 100 bpm.
> 
> I tried
> 
> \version "2.18.2"
> {
>  \tempo "Allegro"
>  \once \set Score.tempoHideNote = ##t
>  \tempo 4 = 100
>  a
> }


% sets different visual and midi tempo indications
\version "2.18.2"
{
 \tempo "Allegro"
 \once \set Score.tempoHideNote = ##t
 \set Score.tempoWholesPerMinute = #(ly:make-moment 100 4 0 0)
 a      
}

%Cheers,
%MS


reply via email to

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