Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
I've been testing out using the Demuxer directly using symphonia-core and symphonia-format-mkv. I'm quite used to dealing with demuxers and codecs, and using them works great!
For my use case, I'm decoding MKV- and MP4-files that have both audio and video, but I'm only interesting in extracting the audio. The containers also have multiple audio files, and they are differentiated by name. However the names are not currently surfaced in Track.
Reading the crates.io README for core and format-mkv, I see:
I've been trying to read other PRs and Issues to understand what the stance is on using the lower level crates. Is it a supported use case or not? I totally get that it might not be.
As for the track names. Would you be open to a PR that starts doing that for MKV and MP4? You can see the start of my changes here.