lilypond-user
[Top][All Lists]
Advanced

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

Re: midi rhythm


From: Ben
Subject: Re: midi rhythm
Date: Tue, 6 Nov 2018 18:17:35 -0500
User-agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1

On 11/6/2018 5:28 PM, Gianmaria Lari wrote:
I have a simple rhythm score like this:

\version "2.19.82"
myr = { 4 8 16 16 4 4 }
\score {\new RhythmicStaff \myr }

How could I generate some form of midi file from it? It's for didactical use.
Thank you, g.


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

Hi G,

Something like this should work...but just add your notes and durations :)

\version "2.19.82"
\language "english"

\score {
  \new RhythmicStaff {
    %\set RhythmicStaff.midiInstrument = "flute"
    \set Staff.midiInstrument = "flute"
    c
  }
  \midi {
    \context {
    \RhythmicStaff
    \alias Staff
    }
  }
}

reply via email to

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