bug-lilypond
[Top][All Lists]
Advanced

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

musicxml2ly lyrics


From: jones
Subject: musicxml2ly lyrics
Date: Fri, 1 May 2009 19:13:06 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

Hi everybody

I've tried to convert a simple song from musicxml to lilypond using musicxml2ly.
I've recogized, that every syllable under a beam has been omitted in the
lilypondfile. I've looked into the musicxml2ly.py file and found this code

 # ignore lyrics for notes inside a slur, tie, chord or beam
 ignore_lyrics = inside_slur or is_tied or is_chord or is_beamed

which I changed to

 # ignore lyrics for notes inside a slur, tie, chord or beam
 ignore_lyrics = inside_slur or is_tied or is_chord 

Now all syllable are present in the lilypond file, but were not set under 
the beams correcly. So now I changed the following lines in the generated
lilypondfile:

   \layout {
     \context { \Score
        autoBeaming = ##f
      }
    }

to

  \layout {
    \context { \Score
        autoBeaming = ##f
        }
    }

Now everything seem to be ok. I dont know python very much, so I don't know if
my changes to musicxml2ly.py has any side effects. Maybe someone who has more
knowledge could have a look at this issue. If neccessay I can provide the xml
file of the song.

Cheers 
Jones





reply via email to

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