I am having difficulty using midi with frescobaldi. I am using Ubuntu 14.10 and Frescobaldi 2.17.12. I have downloaded Timidity and as far as I can tell it works fine (I can play a midi file via the terminal just fine). However when I try to use the built-in midi player on the same file in Frescobaldi, it fails. When I look at Edit -> Preferences and Refresh midi ports: nothing happens. Ugh!!! Help please, and thanks in advance!
-MD
* timidity is not running
--
Frescobaldi homepage: http://www.frescobaldi.org/
Mailing list: http://groups.google.com/group/frescobaldi
Issue tracker: https://github.com/wbsoft/frescobaldi/issues
\score {
\new ChoirStaff <<
\new Staff \with {
midiInstrument = " string ensemble 1 "
instrumentName = \markup \center-column { "S" "A"}
} <<
\new Voice = "soprano" { \voiceOne \soprano }
\new Voice = "alto" { \voiceTwo \alto }
>>
\new Lyrics \lyricsto "soprano" \verse
\new Staff \with {
midiInstrument = " string ensemble 1 "
instrumentName = \markup \center-column { "T" "B" }
} <<
\clef bass
\new Voice = "tenor" { \voiceOne \tenor }
\new Voice = "bass" { \voiceTwo \bass }
>>
>>
\layout {
ragged-last=##t
#(layout-set-staff-size 22)
\context {
\Lyrics
\override VerticalAxisGroup #'staff-affinity = ##f
\override VerticalAxisGroup #'staff-staff-spacing =
#'((basic-distance . 0)
(minimum-distance . 2)
(padding . 2))
}
\context {
\Staff
\override VerticalAxisGroup #'staff-staff-spacing =
#'((basic-distance . 0)
(minimum-distance . 2)
(padding . 2))
}
}
\midi {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 145 4)
}
}
}