lilypond-user
[Top][All Lists]
Advanced

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

Re: midi rhythm


From: Gianmaria Lari
Subject: Re: midi rhythm
Date: Wed, 7 Nov 2018 00:31:44 +0100



On Wed, 7 Nov 2018 at 00:24, Ben <address@hidden> wrote:
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
    }
  }
}
_______________________________________________
lilypond-user mailing list
address@hidden
https://lists.gnu.org/mailman/listinfo/lilypond-user


Just made a test and it works, interesting.... Thank you Ben!
g.


reply via email to

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