Android offline download ignores OfflineDownloadRequest.minimumBitrate
#808
Unanswered
subhadeep1010
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Bug: Android offline download ignores
OfflineDownloadRequest.minimumBitrate(regression)Summary
On Android, offline downloads started via
OfflineContentManager.download({ minimumBitrate })do not respect the selected bitrate/quality. This worked in an earlierbitmovin-player-react-nativeversion but appears broken after upgrading.What we expect
When passing
minimumBitrate(in bps) the SDK should select the nearest higher available video representation (per the RN type docs) and download that rendition (or at least not exceed the chosen quality).What actually happens
On Android, the downloaded offline content appears to be:
minimumBitrateat all (quality/size indicates a higher representation than selected), ORiOS behavior: works
Reproduction
Steps
bandwidth/averageBandwidth).360p~800000bpsCode snippet (minimal)
ts
Question
Is there any change in Android offline track selection behavior for
minimumBitratein recent versions, or a new/required setting (e.g., max bitrate, preferred track selection, etc.) to enforce bitrate constraints for offline downloads?All reactions