-
Notifications
You must be signed in to change notification settings - Fork 44
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
add a list of tracks to group them together #746
base: master
Are you sure you want to change the base?
Conversation
Also it might need a paragraph to explain how it's supposed to work. Except it's a Matroska v5 thing so it can't go in the main spec document. So we need to start a new one for Matroska v5. cc @mcr @SpencerDawkins I suppose this should be a clean new document and not the previous one augmented with new things. |
The good is we have a start. Why now is there only a generic Can you remember that we have implemented the To use an UUID is also again a waste of space. Always 16 Bytes are in use. A normal UID is also good and do the same job. At the first time we also don't need TrackSet-Types. Sometime it feels I speak with a wall :-) |
Again, keep your sarcasm and personal attacks to yourself. It violates the code of conduct. I have better things to do than endure this.
I don't know the reason. I can't think of why it should be that way. If we have 3 audio commentary tracks and 20 translations for each, we are not going to generate all the possible combinations of tracks, nor just the ones we allow or not. We should list:
You're referring to #606. I guess we could do the same, but for the same reasons given in that Pull Request: "tags with TagEditionUID as the target might be sufficient and more versatile.". We even have a section in the specs that says Tag names have priority over strings found in the format: https://github.com/ietf-wg-cellar/matroska-specification/pull/656/files.
A normal UID is a UUID. The Matroska UIDs are not the usual thing people expect from a UID. Just like with the BCP47 strings languages, going forward we should use IETF technologies when they exist. However, given the value is local to the file so it can be addressed by tags, I guess the same format as |
One reason is that there must be a way to deselect a track type. For example: When I start this mkv the german audio and the german forced captions are used by default. A next reason is, to have the option not to change a current active track type. |
For now this Pull Request just adds the bare minimum that we agree on.
I think we also need
Fixes #717