2017-09-17 21:58 GMT+02:00 Larry <larry7...@gmail.com>:
> Hi everyone!
>
> I'm new and I'm learning as I go. I've got the Fescobaldi installed and my
> inputs are slow. I know the tempo command can speed this up but I could not
> find what the default tempo is or how it is determined. Thanks for your
> help.
>
> Larry


The relevant context-property for it is tempoWholesPerMinute (which
can be set with \tempo ... )

The default is in performer-init.ly:
  %% quarter = 60
  tempoWholesPerMinute = #(ly:make-moment 15/1)

or you can read it out:

\score {
  { c'1 }
  \midi {
    \context Score
    \applyContext
      #(lambda (ctx) (display (ly:context-property ctx 'tempoWholesPerMinute)))
  }
}
--> #<Mom 15>


Cheers,
  Harm

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

Reply via email to