alphatex show drum (notation or tabs) #474
-
Descriptionwith guitar pro file, alphatab can show drum notation, it'll nice to have if alphatex can show drum notation too Possible Solutions
result trying to add \tuning drum on alphatex above result **tested for both score and tab stave profile on ** n.b. Questionis alphatex support drum notation ? or even better drum tabs ?
thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
As of today alphaTex does not support any kind of drum notation. It should be fairly easy to add it since the latest changes I made for supporting percussion notation. I would need to think of a proper way to address the indivdiual instruments as the midi number is not really nice: alphaTab/src/model/PercussionMapper.ts Line 76 in b31f6a4 I will add a work item for that to the backlog but I think it will have rather low priority.
This would then be support for a full separate file format. and usually ASCII tabs are not really following a common standard. They are not really suited for machine reading and many people usually write it slightly adjusted which makes it impossible to properly support them. So I guess I will rather not add support for ascii drum tabs but I'm happy to accept contributions.
Midi instrument 119 might be 'Synth Drum' from the sound but it is not a midi percussion instrument. it has the same sounds for all note heights. You have to consider https://en.wikipedia.org/wiki/General_MIDI#Percussion for that. |
Beta Was this translation helpful? Give feedback.
-
1.4.0-alpha.1026 has now support for percussion tracks via alphaTex: |
Beta Was this translation helpful? Give feedback.
As of today alphaTex does not support any kind of drum notation. It should be fairly easy to add it since the latest changes I made for supporting percussion notation. I would need to think of a proper way to address the indivdiual instruments as the midi number is not really nice:
alphaTab/src/model/PercussionMapper.ts
Line 76 in b31f6a4
I will add a work item for that to the backlog but I think it will have rather low priority.
This would then be support for a full separate file format. and usually ASCII tabs are not…