Re: Removing all dynamics from MIDI

2022-04-18 Thread David Kastrup
Simon Albrecht writes: > Hi David, > > On 16/04/2022 18:11, David Santamauro wrote: >> Hi, it seems removing the Dynamic_performer doesn’t actually remove >> performance of articulations. > > > Articulations are Script grobs, not Dynamics. Maybe removing > Script_engraver as well would do the

Re: Removing all dynamics from MIDI

2022-04-18 Thread Simon Albrecht
Hi David, On 16/04/2022 18:11, David Santamauro wrote: Hi, it seems removing the Dynamic_performer doesn’t actually remove performance of articulations. Articulations are Script grobs, not Dynamics. Maybe removing Script_engraver as well would do the trick? I don’t work with MIDI much, so

Re: Removing all dynamics from MIDI

2022-04-18 Thread Thomas Morley
Am Mo., 18. Apr. 2022 um 10:48 Uhr schrieb David Santamauro : > > > On Apr 17, 2022, at 11:53 AM, Lukas-Fabian Moser wrote: > > Hi David, > > After tracking this string throughout the source code, I finally found where > the property is set: ly/script-init.ly > > accent = #(make-articulation

Re: Removing all dynamics from MIDI

2022-04-18 Thread David Santamauro
> On Apr 17, 2022, at 11:53 AM, Lukas-Fabian Moser wrote: > > Hi David, > >> After tracking this string throughout the source code, I finally found where >> the property is set: ly/script-init.ly >> >> accent = #(make-articulation 'accent >>

Re: Removing all dynamics from MIDI

2022-04-17 Thread Lukas-Fabian Moser
Hi David, After tracking this string throughout the source code, I finally found where the property is set: ly/script-init.ly accent = #(make-articulation 'accent 'midi-extra-velocity 20) marcato = #(make-articulation 'marcato 'midi-extra-velocity 40) You can just

Re: Removing all dynamics from MIDI

2022-04-16 Thread David Santamauro
After some digging, in note-performer.cc I found velocity += from_scm (get_property (ev, "midi-extra-velocity"), 0); After tracking this string throughout the source code, I finally found where the property is set: ly/script-init.ly accent = #(make-articulation 'accent

Removing all dynamics from MIDI

2022-04-16 Thread David Santamauro
Hi, it seems removing the Dynamic_performer doesn’t actually remove performance of articulations. E.g., \version "2.22.2" \include "english.ly" hits = \relative c { c''4\mp c-^ c-> c } \score { \hits \layout {} \midi { \context { \Voice \remove "Dynamic_performer" }

Re: "Problematic" conversion from MIDI: c4*5, c1 (in 3/4 time) etc.

2016-07-31 Thread David Wright
On Fri 29 Jul 2016 at 23:02:22 (+0200), Mojca Miklavec wrote: > On 29 July 2016 at 21:55, David Wright wrote: > > On Fri 29 Jul 2016 at 14:29:57 (+0200), Mojca Miklavec wrote: > >> I have a midi file that I wanted to convert into scores, but the > >> scores simply don't look right. > >> > >> While

Re: "Problematic" conversion from MIDI: c4*5, c1 (in 3/4 time) etc.

2016-07-29 Thread Mojca Miklavec
On 29 July 2016 at 21:55, David Wright wrote: > On Fri 29 Jul 2016 at 14:29:57 (+0200), Mojca Miklavec wrote: >> I have a midi file that I wanted to convert into scores, but the >> scores simply don't look right. >> >> While I have a real (relatively long) song in the MIDI, I believe that >> I can

Re: "Problematic" conversion from MIDI: c4*5, c1 (in 3/4 time) etc.

2016-07-29 Thread David Wright
On Fri 29 Jul 2016 at 14:29:57 (+0200), Mojca Miklavec wrote: > I have a midi file that I wanted to convert into scores, but the > scores simply don't look right. > > While I have a real (relatively long) song in the MIDI, I believe that > I can fully reproduce the problem with the following

"Problematic" conversion from MIDI: c4*5, c1 (in 3/4 time) etc.

2016-07-29 Thread Mojca Miklavec
Hello, I have a midi file that I wanted to convert into scores, but the scores simply don't look right. While I have a real (relatively long) song in the MIDI, I believe that I can fully reproduce the problem with the following simple example: \score { \new Voice = "melody" {

Re: proportional notation from MIDI file

2015-07-16 Thread karl
Peter: Thanks for your reaction. I could not open the miditoly.pl file. You don't open it, save it somewhere and then run it from the command line (to run it you need a perl interpreter). but that is no problem. At first I will try the conversion with LilyPond. If that doesn't work (good

proportional notation from MIDI file

2015-07-15 Thread Peter Sterk
Hello Karl, Thanks for your reaction. I could not open the miditoly.pl file. but that is no problem. At first I will try the conversion with LilyPond. If that doesn't work (good enough) I'll try your program and ask you again. Peter ___ lilypond-user

Re: proportional notation from MIDI file

2015-07-15 Thread Peter Sterk
Hello Federico, Thanks for your reaction. I'll give it a try. Peter 2015-07-12 13:36 GMT+02:00 Federico Bruni f...@inventati.org: Il giorno dom 12 lug 2015 alle 12:58, Peter 2peterst...@gmail.com ha scritto: Does anyone know if it is possible to convert a MIDI file to an proportional

Re: proportional notation from MIDI file

2015-07-12 Thread Federico Bruni
Il giorno dom 12 lug 2015 alle 12:58, Peter 2peterst...@gmail.com ha scritto: Does anyone know if it is possible to convert a MIDI file to an proportional (spacial) notated score with LilyPond? In other words: can LilyPond calculate the right spaces between the notes based on timing in a MIDI

proportional notation from MIDI file

2015-07-12 Thread Peter
Hi, Does anyone know if it is possible to convert a MIDI file to an proportional (spacial) notated score with LilyPond? In other words: can LilyPond calculate the right spaces between the notes based on timing in a MIDI file? I have no experience with LilyPond yet, and wonder if it is

Re: proportional notation from MIDI file

2015-07-12 Thread karl
Federico Bruni: Il giorno dom 12 lug 2015 alle 12:58, Peter 2peterst...@gmail.com ha scritto: Does anyone know if it is possible to convert a MIDI file to an proportional (spacial) notated score with LilyPond? In other words: can LilyPond calculate the right spaces between the notes

Re: excluding a staff from MIDI output

2013-08-08 Thread Jan Kašpar
On Wed, Aug 7, 2013 at 7:02 PM, Glen Larsen glenl@gmail.com wrote: I often use this when developing guitar tabs so the MIDI output doesn't double up: \new TabStaff = Guitar tabs \with { \remove Staff_performer } Excellent! This is just what I was looking for. Many thanks!

Re: excluding a staff from MIDI output

2013-08-08 Thread Federico Bruni
2013/8/7 Glen Larsen glenl@gmail.com I often use this when developing guitar tabs so the MIDI output doesn't double up: \new TabStaff = Guitar tabs \with { \remove Staff_performer } Thanks Glen, I never realized it! I see that the size of the midi file is reduced by an

excluding a staff from MIDI output

2013-08-07 Thread Jan Kašpar
Hello, I wonder whether there is a simple way of excluding a staff from the MIDI output. Many thanks in advance, Jan. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: excluding a staff from MIDI output

2013-08-07 Thread Glen Larsen
I often use this when developing guitar tabs so the MIDI output doesn't double up: \new TabStaff = Guitar tabs \with { \remove Staff_performer } On Wed, Aug 7, 2013 at 5:48 AM, Jan Kašpar jan.kas...@gmail.com wrote: Hello, I wonder whether there is a simple way of excluding a

Re: 'hideNotes' from midi or align lyrics differently

2011-07-17 Thread Wilbert Berendsen
Op Sat, 16 Jul 2011 09:43:35 -0700 Jay Anderson horndud...@gmail.com schreef: - Is there a way to use \set associatedVoice bass at the beginning? Put it in the \with { } block: \new Lyrics \with { associatedVoice = bass } \lyricmode { bla bla bla } Or use the lyricsto construction: \new

Re: 'hideNotes' from midi or align lyrics differently

2011-07-17 Thread Jay Anderson
On Sun, Jul 17, 2011 at 3:24 AM, Wilbert Berendsen wbs...@xs4all.nl wrote: Put it in the \with { } block: ... Or use the lyricsto construction: \new Lyrics \lyricsto bass { bla bla bla } True, but that doesn't quite work for what I'm trying to do. I have a function which generates a score

'hideNotes' from midi or align lyrics differently

2011-07-16 Thread Jay Anderson
shouldn't 'hideNotes' also hide them from midi?). As a final workaround I put the same notes from the bass in the soprano voice so the midi sounds correct (this creates other things to worry about like having to hide slurs). Is there a cleaner alternative? To sum up: - Is there a way to use \set

Suppress chord names from MIDI output

2011-01-18 Thread Brett McCoy
Is there a way to suppress MIDI output for \ChordName context? When I create a staff with other parts and have chord names at the top, the output always has a piano playing those chords and it's interfering with the rest of the piece, plus I don't need the extra track when I import the MIDI into a

Re: Suppress chord names from MIDI output

2011-01-18 Thread James Bailey
On Jan 18, 2011, at 7:00 PM, Brett McCoy wrote: Is there a way to suppress MIDI output for \ChordName context? When I create a staff with other parts and have chord names at the top, the output always has a piano playing those chords and it's interfering with the rest of the piece, plus I

RE: Suppress chord names from MIDI output

2011-01-18 Thread James Lowe
Brett -Original Message- From: lilypond-user-bounces+james.lowe=datacore@gnu.org [mailto:lilypond-user-bounces+james.lowe=datacore@gnu.org] On Behalf Of Brett McCoy Sent: 18 January 2011 18:00 To: lilypond-user Subject: Suppress chord names from MIDI output Is there a way

Re: Suppress chord names from MIDI output

2011-01-18 Thread Michael Ellis
+1 Having two score blocks in a book block is working very nicely for me. Cheers, Mike On Tue, Jan 18, 2011 at 1:12 PM, James Bailey derhindem...@googlemail.comwrote: Have two \score blocks, one without \ChordName, but including \midi, and one with \layout, that includes the \ChordName

Re: Suppress chord names from MIDI output

2011-01-18 Thread Johan Vromans
Brett McCoy idragos...@gmail.com writes: Is there a way to suppress MIDI output for \ChordName context? When I create a staff with other parts and have chord names at the top, the output always has a piano playing those chords and it's interfering with the rest of the piece, plus I don't need

Re: another route from MIDI to lilypond (from NtEd developer)

2009-10-02 Thread Joerg Anders
On Wed, 30 Sep 2009, Laura Conrad wrote: Yes, but then I have to do that for each of the 5 staves. ... So the workaround I've found is to change it to F major with the adjust notes box checked, and then uncheck the adjust notes box and change it back to C major. NtEd-1.8.6 now has a

Re: another route from MIDI to lilypond (from NtEd developer)

2009-10-02 Thread Martin Tarenskeen
On Fri, Oct 02, 2009 at 06:48:58PM +0200, Joerg Anders wrote: all, what we really want is for midi2ly to do the right thing ... I had a look into midi2ly. Althought I like Python and I know how much things can be done with only a few Python lines, from my experience with NtEd and a half year

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-30 Thread Joerg Anders
On Tue, 29 Sep 2009, Laura Conrad wrote: First of all: All you want is solved in actual version (1.8.1) thanks to appropriate requests even of members of this list. separate pages or separate staves. Even someone who was doing a piano reduction wouldn't want the lilypond to notate them as

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-30 Thread Laura Conrad
Joerg == Joerg Anders j...@informatik.tu-chemnitz.de writes: The version I saved hadn't spelled the flats right, either, but I think I might have fixed that later. Joerg Could you please tell us what is misspelled ? Is it really Joerg the bes instead Bb ?

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-29 Thread Laura Conrad
Martin == Martin Tarenskeen m.tarensk...@zonnet.nl writes: NtEd has such a --key=... option implicitely! I can't see any problem here. Martin Yes, NtEd does a pretty good job. I didn't find that with my sample -- it was the only one of the programs that didn't split the voices

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-29 Thread Joerg Anders
On Tue, 29 Sep 2009, Laura Conrad wrote: I didn't find that with my sample -- it was the only one of the programs that didn't split the voices out correctly. There should be 5 separate voices, and nted created only 3. From where do you know there are 5 voices? Or do you mean staves ? Which

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-29 Thread Laura Conrad
Joerg == Joerg Anders j...@informatik.tu-chemnitz.de writes: Joerg On Tue, 29 Sep 2009, Laura Conrad wrote: I didn't find that with my sample -- it was the only one of the programs that didn't split the voices out correctly. There should be 5 separate voices, and nted created

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-28 Thread Joerg Anders
A word from NtEd developer: On Sat, 26 Sep 2009, Laura Conrad wrote: A quick test on the same MIDI file as earlier shows that it spells Bb wrong, and doesn't correct it if I edit the key signature. Hmm! I imported a MIDI which includes a simple Bb scale. The LilyPond export gives:

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-28 Thread Martin Tarenskeen
On Mon, Sep 28, 2009 at 11:19:26AM +0200, Joerg Anders wrote: A word from NtEd developer: On Sat, 26 Sep 2009, Laura Conrad wrote: A quick test on the same MIDI file as earlier shows that it spells Bb wrong, and doesn't correct it if I edit the key signature. bes'4 c d es | %

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-28 Thread Martin Tarenskeen
On Mon, Sep 28, 2009 at 11:19:26AM +0200, Joerg Anders wrote: A word from NtEd developer: Furthermore: NtEd is the one and only score editor on Linux which distributes the MIDI notes onto different voices if necessary: Yeah, that's magick! Midi2ly also fails hopelessly with polyphony in

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-28 Thread Joerg Anders
On Mon, 28 Sep 2009, Martin Tarenskeen wrote: The MIDI file examples that Laura is using (she mailed them to me) contain Bb/A# notes but do not contain (a correct) Key Signature MIDI Meta Event. In MIDI there is no simple way to see the difference between A# and Bb (It's just a note number)

[OT] Re: another route from MIDI to lilypond (from NtEd developer) [OT]

2009-09-28 Thread rosea grammostola
Sorry a bit OT but I get Err http://pini.free.fr testing Release.gpg Could not resolve 'pini.free.fr' Err http://pini.free.fr testing/main Translation-en_US Could not resolve 'pini.free.fr' \r ___ lilypond-user mailing list lilypond-user@gnu.org

Re: [OT] Re: another route from MIDI to lilypond (from NtEd developer) [OT]

2009-09-28 Thread Joerg Anders
On Mon, 28 Sep 2009, rosea grammostola wrote: Sorry a bit OT but I get Err http://pini.free.fr testing Release.gpg Could not resolve 'pini.free.fr' Err http://pini.free.fr testing/main Translation-en_US Could not resolve 'pini.free.fr' what gives: nslookup pini.free.fr -- J.Anders,

Re: [OT] Re: another route from MIDI to lilypond (from NtEd developer) [OT]

2009-09-28 Thread rosea grammostola
Joerg Anders wrote: On Mon, 28 Sep 2009, rosea grammostola wrote: Sorry a bit OT but I get Err http://pini.free.fr testing Release.gpg Could not resolve 'pini.free.fr' Err http://pini.free.fr testing/main Translation-en_US Could not resolve 'pini.free.fr' what gives: nslookup

Re: another route from MIDI to lilypond (from NtEd developer)

2009-09-28 Thread Martin Tarenskeen
On Mon, Sep 28, 2009 at 01:32:37PM +0200, Joerg Anders wrote: On Mon, 28 Sep 2009, Martin Tarenskeen wrote: That's why midi2ly has a --key=... commandline option. Unfortunately this option is not working ( The commandline key-signature is overwritten by the one in the MIDI meta events). I'm

Re: another route from MIDI to lilypond

2009-09-26 Thread lasconic
-user -- View this message in context: http://www.nabble.com/another-route-from-MIDI-to-lilypond-tp25615737p25623058.html Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com. ___ lilypond-user mailing list lilypond-user@gnu.org

Re: another route from MIDI to lilypond

2009-09-26 Thread Laura Conrad
lasconic == lasconic lasco...@gmail.com writes: lasconic Out of curiosity, which software packages did you try? midi2ly, midi2abc, noteflight, nted. These all had spelling errors. I just tried rosegarden, which exports lilypond directly. It looks pretty good, and may be tweakable to be

another route from MIDI to lilypond

2009-09-25 Thread Laura Conrad
I was frustrated only this week by the problems of getting a MIDI file into lilypond via midi2ly, so when I got a newsletter from Noteflight http://www.noteflight.com/ saying that they now have MIDI import, I did a quick test. It turns out to be fairly simple to import the MIDI file into

Re: another route from MIDI to lilypond

2009-09-25 Thread Martin Tarenskeen
On Fri, Sep 25, 2009 at 01:13:29PM -0400, Laura Conrad wrote: I was frustrated only this week by the problems of getting a MIDI file into lilypond via midi2ly, so when I got a newsletter from Noteflight http://www.noteflight.com/ saying that they now have MIDI import, I did a quick test.

Re: another route from MIDI to lilypond

2009-09-25 Thread Villum Sejersen
Both of you ought to take a look at Jöerg Anders' NtED, which to my experience has good import/export facilities. Both the application and the source code (C++) look very impressive to me. http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml -- yours, Villum Sejersen Nørregade 1 A

Re: another route from MIDI to lilypond

2009-09-25 Thread Laura Conrad
Villum == Villum Sejersen v...@privat.tdcadsl.dk writes: Villum Both of you ought to take a look at Jöerg Anders' NtED, Villum which to my experience has good import/export Villum facilities. Both the application and the source code (C++) Villum look very impressive to me. A

Re: from MIDI?

2008-03-26 Thread Christ van Willegen
Hello George, list, It's possible to make a .ly file into a MIDI file, but is it possible to have a midi file and convert it back to a .ly file, or even better, a .pdf file? Yes, there is. There is a command called 'midi2ly' that converts a MIDI file to a Lilypond file. YOu can then use

from MIDI?

2008-03-25 Thread George_
It's possible to make a .ly file into a MIDI file, but is it possible to have a midi file and convert it back to a .ly file, or even better, a .pdf file? Thanks -- View this message in context: http://www.nabble.com/from-MIDI--tp16295951p16295951.html Sent from the Gnu - Lilypond - User

How to make mp3-files from midi

2005-06-13 Thread Wolfgang Zocher
Hi all, I'm trying to make mp3's from the midi-files generated by lilypond using timidity and lame. Unfortunately, I have no success using these tools: the resulting mp3-file runs much too fast on the mpg123 player; sometimes I only get some noise. The reason is simple: I can't find the right

Lyrics disappeared from midi files in 2.4.0

2005-01-28 Thread Michiel Lange
Recently I have upgraded from lilypond 2.2 to 2.4 After convert-ly and running the files through lilypond it appears that songs with lyrics that did have lyrics in midifiles in lily 2.2 no longer have them. Has something changed around this point that passed my attention when reading the

Re: Lyrics disappeared from midi files in 2.4.0

2005-01-28 Thread Mats Bengtsson
Seems like a bug! /Mats Michiel Lange wrote: Recently I have upgraded from lilypond 2.2 to 2.4 After convert-ly and running the files through lilypond it appears that songs with lyrics that did have lyrics in midifiles in lily 2.2 no longer have them. Has something changed around this point

Re: Lyrics disappeared from midi files in 2.4.0

2005-01-28 Thread Erik Sandberg
Thanks, added to bug cvs (midi-lyrics) On Friday 28 January 2005 12.29, Mats Bengtsson wrote: Seems like a bug! /Mats Michiel Lange wrote: Recently I have upgraded from lilypond 2.2 to 2.4 After convert-ly and running the files through lilypond it appears that songs with lyrics that