Closed samuelbradshaw closed 1 month ago
It's not actually necessary to make the lyrics separate to get those benefits...
<event value="3/16">
<note pitch="C4"/>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="begin">Hap</lyric>
<lyric verse="1" lang="it_IT" syllabic="begin">Tan</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="melisma-start">Good</lyric>
</lyric-set>
</event>
<event value="1/16">
<note pitch="C4"/>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="end">py</lyric>
<lyric verse="1" lang="it_IT" syllabic="end">ti</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="melisma-end"/>
</lyric-set>
</event>
<event value="/4">
<note pitch="D4"/>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="begin">birth</lyric>
<lyric verse="1" lang="it_IT" syllabic="begin">augu</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="begin">morn</lyric>
</lyric-set>
</event>
<event value="/4">
<note pitch="C4"/>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="end">day</lyric>
<lyric verse="1" lang="it_IT" syllabic="begin">ri</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US" syllabic="end">ing</lyric>
</lyric-set>
</event>
<event value="/4">
<note pitch="F4"/>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US">to</lyric>
<lyric verse="1" lang="it_IT">a</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US">to</lyric>
</lyric-set>
</event>
<event value="/2">
<note pitch="E4"/>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US" line="end">you,</lyric>
<lyric verse="1" lang="it_IT" line="end">te,</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US" line="end">you,</lyric>
</lyric-set>
</event>
... though admittedly it is much neater to have them separate.
If you're going to have the lyrics separate, why not go the whole hog:
<lyrics>
<lyric-set title="Happy Birthday to You!" orig-lang="en_US">
<lyric verse="1" lang="en_US">Hap-py birth-day to you,</lyric>
<lyric verse="1" lang="it_IT">Tan-ti augu-ri a te,</lyric>
</lyric-set>
<lyric-set title="Good Morning to all!" orig-lang="en_US">
<lyric verse="1" lang="en_US">Good_ morn-ing to you,</lyric>
</lyric-set>
</lyrics>
This assumes we split lyrics on spaces `, hyphen-minus
-and underscores
_, so there would need to be a way to escape these characters if they are used within a lyric (e.g. by preceding them with a backslash
`).
Things that ought to be encoded, regardless of encoding scheme:
I think this issue suffers a bit from focusing on a solution, not the problem. As @shoogle said, if the problem is to characterize lyrics as belonging to languages and other classification schemes, that does not require MNX to segregate lyrics in a separate container element.
My analysis of the segregation approach is that it's not a net win. At the moment, lyrics belong to events, and that forces their classifiers to be messy attributes. If lyrics belong to abstract "sets" for the classifiers, that forces their owning events to be messy attributes. Not a nice setup either way, but since a lyric must belong to an event, (it might not have a classifier), it makes sense to design the schema around the event ownership.
I suggest retitling the issue to reflect the desire for languages or classifiers, provide a few solid examples and then we can see what is the best solution to that problem.
Another argument in favour of integrated lyrics is that, since lyrics belong to an "event", if you delete an event then you automatically delete any lyrics associated with it, whereas if lyrics are separate then you have to go looking for them. If an implementation fails to go looking for lyrics then it will lead to big problems deleting notes (or measures or staves for that matter), and it's a similar story for inserting notes too.
Separate lyrics certainly look nicer for humans reading the file, but now imagine you need to find the note with the "birth" lyric. This is also easier if lyrics are stored inside events.
@shoogle, I thought about going "whole hog," so to speak – not putting tags around each syllable – but the main limitation is that it would keep you from being able to precisely line up the lyrics exactly where you want them... Otherwise, I would be completely for it. :)
Having integrated lyrics in multiple languages, as in @shoogle's first example, could work for a couple of languages, but it gets difficult to manage when you're working with 20+ languages. It doesn't meet the need to reduce bandwidth consumption or save space on a user's device by only downloading what a particular user needs. And, it bulks up the size of the file if you need to assign verse numbers, languages, and styling to each syllable instead of to a parent element.
@samuelbradshaw, the idea is that content distributors would keep a master file that contains all languages, but they would strip out the unnecessary ones before serving the file to consumers.
By default, users would only see two languages:
But users could be allowed to request more languages if they want.
Regarding attributes increasing the file size, this is certainly true, but it's not really a problem if the file is stored and distributed in compressed form. Anyway, it should be possible to minimise the extra space if careful though is put into the encoding scheme. It might not be necessary to store the verse number (or any other attribute for that matter) in every syllable, for example; it might be good enough to store the verse number in the first syllable and assume it is the same for all subsequent syllables on the same line (until a different verse number is given).
@samuelbradshaw I think that lyrics need to be event based. If we are running into problems due to duplicating elements, then we need a parent element, such as the following:
<event value="3/16">
<note pitch="C4"/>
<lyric-set verse="1" syllabic="begin">
<lyric lyric-id="en_US">Hap</lyric>
<lyric lyric-id="it_IT">Tan</lyric>
<lyric lyric-id="en_US-2" syllabic="melisma-start">Good</lyric>
</lyric-set>
</event>
And then we add a descriptor outside the event listings (in the global?):
<lyric-lists>
<lyric-info lyric-id="en_US" title="Happy Birthday to You!" orig-lang="en_US"/>
<lyric-info lyric-id="it_IT" title="Happy Birthday to You!" orig-lang="en_US"/>
<lyric-info lyric-id="en_US-2" title="Good Morning to You!" orig-lang="en_US"/>
</lyric-lists>
The problems with showing or hiding any given set of lyrics are handled with the CSS styling, which can make it so that any lyric with the lyric-id "en_US-2" has "display: none", and any lyric with the lyric-id "it_IT" is in italics, for example. Then, applying different style sheets to the same file will produce different language instances.
This doesn't hit all the use cases, granted, especially the translation problem. But it is still reasonably possible to extract a set of lyrics from this file. You just scan through for the correct lyric-id and compile the words together. And that might actually be MORE readable to a program extracting the text than a set of words with a bunch of hyphens in it.
Also, @shoogle, the problem I have with line-based lyrics is that it becomes a real pain to make sure that your melisma (or hyphen) covers all the notes you need it to. What if you have an "Amen" that covers 13 notes for the "A", and another 12 notes for the "men"?
@clnoel, that's easy:
A-------------men____________
This is perfectly readable and immediately understandable. Sure, it's easy loose count when editing by hand, but most editing is not done by hand and it's not a particularly common case anyway.
Nevertheless, I agree that integrated lyrics are better overall. (It's difficult to apply styles to individual syllables in a line-based system, for example.)
It might be a good idea to move the descriptors outside the events, but I wouldn't try to combine the lang
and id
attributes. I'd also try to keep the relationship between the translations and alternatives clearer:
<lyrics>
<lyric-set lang="en_US" title="Happy Birthday to You!">
<localisation lang="it_IT" title="Tanti auguri a te"/>
</lyric-set>
<lyric-set orig-lang="en_US" title="Good Morning to All!"/>
</lyrics>
There is not necessarily any need for IDs, if we can assume that (e.g.) the 3rd lyric under each note belongs to the set for "Good Morning to All". (It's worth mentioning here that "Good Morning to All!" is not a second verse: it is an alternative set of lyrics that fits the melody - in fact they are the original lyrics.)
Just to play devil's advocate, an interesting feature of storing lyrics separately is the ability to reuse them elsewhere in the score. Imagine an SATB harmony to "Happy Birthday to You!" where each of the 4 parts sings the same lyric but at a different pitch (the rhythm can change too as long as the number of notes each lyric is sung for stays the same). In this case, each part could refer to a shared set of lyrics elsewhere in the document.
Marking this as closed, for the sake of cleaning up our issue database. Personally I agree with Joe's comment above: https://github.com/w3c/mnx/issues/139#issuecomment-407475229
I would like to propose the ability for lyrics to be encoded separate from the rest of the music notation. This would allow greater flexibility for how and where the lyrics appear, using styles (for example, display: inline|block|inline-block|none), and allow alternate lyrics to be swapped in and out.
Here is an example of how the lyrics could be encoded:
A few use cases: