bug-lilypond
[Top][All Lists]
Advanced

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

articulate.ly generates incorrect tempo


From: Pavel Roskin
Subject: articulate.ly generates incorrect tempo
Date: Fri, 21 Jun 2013 10:51:56 -0400
User-agent: Internet Messaging Program (IMP) H3 (4.1.4)

articulate.ly can generate wrong tempo if \tempo is not set explicitly in the beginning of every voice.

Let's see this example:

\version "2.16.0"
\include "articulate.ly"
\score {
  \articulate <<
    \new Voice { c4 c4-"rit." }
  >>
  \midi { \tempo 4=200 }
}

From the midi2ly output:

  \tempo 4 = 200
  \skip 4
  \tempo 4 = 36

I think following is happening. articulate.ly gets the original tempo right, sets it to 4=200 for the first note. But internally, it still uses the default 4=60. Then "rit." is interpreted as a 40% slowdown for the tempo, so it becomes 4=36.

--
Regards,
Pavel Roskin



reply via email to

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