You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using DefaultExtractorInput, there is no seek function to help advance the position.
When trying to use Mp4Extractor to read through the data and advance the position in the extractorinput, there is no corresponding seek function to advance the position.
Proposed solution
Implement the seek function to advance the position.
Alternatives considered
The text was updated successfully, but these errors were encountered:
The ExtractorInput interface is designed for sequential reading using methods like read and skip. The seek() functionality resides within the Extractor interface itself. This is because the Extractor is responsible for understanding the media structure and maintaining the necessary mapping (like time to byte position) to enable seeking.
When trying to use Mp4Extractor to read through the data and advance the position in the extractorinput, there is no corresponding seek function to advance the position.
I may be wrong, but this reads like it might be an XY Problem.
It might be worth filing a new 'question' issue with a higher-level overview of what you're trying to do - it may be there's a way we can help without adding the specific seek operation you're asking for (which I agree with @rohitjoins, I don't think makes sense as you've described it).
Before filing a feature request:
enhancement
requests on the ExoPlayer tracker:
https://github.com/google/ExoPlayer/labels/enhancement
When filing a feature request:
Replace the content in the sections below.
[REQUIRED] Use case description
When using DefaultExtractorInput, there is no seek function to help advance the position.
When trying to use Mp4Extractor to read through the data and advance the position in the extractorinput, there is no corresponding seek function to advance the position.
Proposed solution
Implement the seek function to advance the position.
Alternatives considered
The text was updated successfully, but these errors were encountered: