Re: Calculating Tempi for midi output

2007-03-01 Thread live action
Oh, that is great! Thank you so much. This is gonna be great! Mats Bengtsson <[EMAIL PROTECTED]> wrote: The feature is already available! Example: \version "2.10.0" #(define base-tempo 100) \score{ \relative c'{ \set Score.tempoWholesPerMinute = #(ly:make-moment base-tempo 4) c d e f \set Sc

Re: Calculating Tempi for midi output

2007-02-28 Thread Mats Bengtsson
The feature is already available! Example: \version "2.10.0" #(define base-tempo 100) \score{ \relative c'{ \set Score.tempoWholesPerMinute = #(ly:make-moment base-tempo 4) c d e f \set Score.tempoWholesPerMinute = #(ly:make-moment (/ (* base-tempo 3) 4) 4) c d e f } \midi{} } An extra advanta

Re: Calculating Tempi for midi output

2007-02-27 Thread Graham Percival
Thanks, feature request added as http://code.google.com/p/lilypond/issues/detail?id=319 Cheers, - Graham live action wrote: I was wondering if the metronome number in a \tempo command could be a scheme number. This would make it easier to do effects for fermata and ritards and relative tempo

Calculating Tempi for midi output

2007-02-27 Thread live action
I was wondering if the metronome number in a \tempo command could be a scheme number. This would make it easier to do effects for fermata and ritards and relative tempo changes, in midi files. For example, it would be nice to be able to do something like this: #(define base-te