Re: { } not sounding right.

2024-01-21 Thread Werner LEMBERG
> 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

Re: { } not sounding right.

2024-01-20 Thread Pierre-Luc Gauthier
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

Re: { } not sounding right.

2024-01-19 Thread David Kastrup
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

Re: { } not sounding right.

2024-01-19 Thread Werner LEMBERG
> 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

Re: { } not sounding right.

2024-01-19 Thread Lukas-Fabian Moser via LilyPond user discussion
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

Re: { } not sounding right.

2024-01-19 Thread mskala
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

Re: { } not sounding right.

2024-01-18 Thread 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 to the MIDI output. This is a limitation of

{ } not sounding right.

2024-01-18 Thread Pierre-Luc Gauthier
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