Add option.mkvUseIndex
to use index to skip Matroska cluster elements
#2219
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.
Change EBML iterator and Matroksa parser so that, that it processes the metadata found in elements during parsing, rather then when the entire file is parsed.
Adds flag
options.mkvUseIndex
, which is by default:false
, if set totrue
, in Matroska based files, use the SeekHead element index to skip segment/cluster elements..experimental functionality
Can have a significant performance impact if enabled.
Possible side effect can be that certain metadata maybe skipped, depending on the index.
If there is no SeekHead element present in the Matroska file, this flag has no effect.
Related technical information: Matroska: Data Layout
Related to:
Resolves: #2135