lilypond-user
[Top][All Lists]
Advanced

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

Re: Repeating the midi sound?


From: Erik Sandberg
Subject: Re: Repeating the midi sound?
Date: Sun, 6 Nov 2005 21:09:31 +0100
User-agent: KMail/1.8.3

On Sunday 06 November 2005 20.07, Jannik Jeppesen wrote:
> Hi
> is there some code, so i can repeat the midi sound, so it will go on and on
> til stopped?

I don't understand what you mean, but you may want to read about the
\repeat unfold
command in the manual.

> And. Is it possible to create 2 midi files from one document if there are 2
> drumstaff´s in the doc?

You can create two separate \score blocks, one for each drumstaff:
staffA = {...}
staffB = {...}
% this block creates paper output
\score {
<<
  \staffA
  \staffB
>>
\layout{}
}

%these blocks generate midi files.
\score {
  \staffA
\midi{..}
}

\score {
  \staffB
\midi{..}
}

-- 
Erik




reply via email to

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