-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export fingering information #85
Comments
Hi! First of all thank you for the development of this fantastic plugin! I am very interested in this topic. How much time do do you think is needed to solve this problem? I have not experience working with ManuScript but I can learn it. I don't understand very well the Sibelius format (.sib files). Are the fingers associated with the notes in the .sib ? |
The best place to look for the answer would be in the ManuScript documentation. That largely determines the data that can be pulled out of a score: http://resources.avid.com/SupportFiles/Sibelius/2018.1/Sibelius_2018.1_ManuScript_Language_Guide.pdf You would probably want to start by looking at the sibmei/src/ExportGenerators.mss Lines 670 to 673 in 9ba2517
Which generates a sibmei/src/ExportGenerators.mss Lines 1770 to 1782 in 9ba2517
I would suggest that any investigations start there? |
Are we talking about textual fingerings here or about GuitarFrame fingerings? If we're talking about textual ones, the way to go is to register a new text handler for the style ID Lines 10 to 20 in e9dab0e
|
Or for |
Hi!! Thank you so much for your answers! I am thinking about the textual fingerings (for example in the piano scores). And the idea would be to associate each of the fingers to the note which annotates. I have seen uses of the harm annotations in the humdrum format. And yes! It would be a perfect way to annotate each note with her finger. RegisterHandlers could work too. What I am not pretty sure is about if ManuScript will allow me to get each finger with his note associated easily. Or the "API" only will allow me to get each thing separately. Do you know, for example, if is easy to get "coordinates" of the (textual) fingers and the notes on the score? As you can see I am not very familiarized with ManuScript but I can learn! . Do you know it is possible to do that? My plan, later, is to use that information with music21. And of course, I will PR this to this project whatever I add to the plugin! Thank you so much for your time! |
I think the answer is "it depends". Quite a lot of the Sibelius objects are visually placed, not necessarily attached to notes. If the fingerings are attached to the note or a chord then you should be able to get the data pretty precisely. If they are not, you will need to use some of the magic methods that have been developed in this plugin to try and infer them. The https://github.com/music-encoding/sibmei/blob/develop/src/Utilities.mss#L216 |
I think that the fingers are not associated with the notes... They are "floating" in the score or "visually placed". In this scenario do you see the association difficult? |
Not difficult, but probably somewhat error-prone. The plugin does a best-guess, but it may not always get it right. |
Ok, Thank you so much! I will evaluate what to do! |
It would be nice to be able to export entered fingering information to the corresponding
<fing>
elements, see http://music-encoding.org/documentation/3.0.0/fing/The text was updated successfully, but these errors were encountered: