-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Support playlists (with buffering of next track when current track nears the end) #1270
Comments
This is supported in |
How to apply this if we have many (e.g. 100) files in the playlist? Is it possible to just provide a FIFO system, where ExoPlayer asks us for the next MediaSource in the playlist whenever it wants to prepare for the next track? That would allow to lazily populate the MediaSources without wasting memory for having all these tracks in the playlist that might not even be played if the user stops playback before reaching them. |
You could implement your own |
Hello all,
I wan't to play 10 songs one by one, auto-switch by STATE_ENDED. When finished the first song, exoplayer will download the second song and prepare to play, so it may result some delay to play second song if bad bandwidth. So I was wondering if there are some policy to pre-load second song when first song is playing?
BR,
The text was updated successfully, but these errors were encountered: