> I rather thought about Lilypond being able to "look ahead|behind"
> like (I imagine is working) the "Melody_Engraver" to harmonise (no
> pun intended) the pitch shift up or down decision.
>
> \language "english"
>
> In my use case :
> - the gqs is the note g pitched upward.
> - the bqf is the
Thanks for all your answers.
Yes I understand that a Pitch bend event (like aftertouch, channel
pressure, etc) is a channel thing.
I rather thought about Lilypond being able to "look ahead|behind" like
(I imagine is working) the "Melody_Engraver" to harmonise (no pun
intended) the pitch shift up
Werner LEMBERG writes:
>> I have a branch (from a few years ago) where I changed LilyPond's MIDI
>> microtonality from using Pitch Bends (which is a bad idea when using
>> chords) to using MIDI 1.0 tuning information. This works fine IIRC as
>> long as you don't construct chords containing really
> I have a branch (from a few years ago) where I changed LilyPond's MIDI
> microtonality from using Pitch Bends (which is a bad idea when using
> chords) to using MIDI 1.0 tuning information. This works fine IIRC as
> long as you don't construct chords containing really close notes
> (e.g. c and
Hi Werner, hi Pierre-Luc,
Am 19.01.24 um 08:43 schrieb Werner LEMBERG:
Try this with and without the \new Voice commented.
\version "2.25.12"
\language "english"
\score {
%\new Voice
<<
{bf bqf bf}
{g gqs g}
>>
\layout {}
\midi {}
}
Obviously you would need to listen
On Fri, 19 Jan 2024, Werner LEMBERG wrote:
> This is a limitation of MIDI: You can only have a single pitch bend
> per time step per channel. LilyPond's rather primitive MIDI 1.0
> output provides no means to circumvent this limitation.
I've sometimes gotten good use out of LilyPond code from ot
> Try this with and without the \new Voice commented.
>
> \version "2.25.12"
>
> \language "english"
>
> \score {
> %\new Voice
> <<
> {bf bqf bf}
> {g gqs g}
> >>
> \layout {}
> \midi {}
> }
>
> Obviously you would need to listen to the MIDI output.
This is a limitation of MID
Hi there,
Boy was that one hard to track down.
Try this with and without the \new Voice commented.
\version "2.25.12"
\language "english"
\score {
%\new Voice
<<
{bf bqf bf}
{g gqs g}
>>
\layout {}
\midi {}
}
Obviously you would need to listen to the MIDI output.
The thing