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
I'm working on implementing a playing queue in Media3. On the service side, I'm using MediaLibraryService which contains an ExoPlayer. I add media items via MediaBrowser.addMediaItem(...).
The Problem:
After adding a MediaItem, the ExoPlayer's Timeline.windowCount increases by 1, but the MediaBrowser's Timeline.windowCount does not reflect this change.
This discrepancy is noticeable when comparing the Timeline.windowCount in MediaBrowser and ExoPlayer.
Question:
What could I be missing? Is there a better way to retrieve the items in the current queue?
The text was updated successfully, but these errors were encountered:
I will close this issue.
We disabled the queue from being shown in android auto, but forgot to enable it else where...
To be clear we this is the cause:
MediaSession.ConnectionResult.DEFAULT_PLAYER_COMMANDS.buildUpon()
.remove(Player.COMMAND_GET_TIMELINE) // Queue button in Android Auto
.build()
Hi,
I'm working on implementing a playing queue in Media3. On the service side, I'm using MediaLibraryService which contains an ExoPlayer. I add media items via MediaBrowser.addMediaItem(...).
The Problem:
After adding a MediaItem, the ExoPlayer's Timeline.windowCount increases by 1, but the MediaBrowser's Timeline.windowCount does not reflect this change.
This discrepancy is noticeable when comparing the Timeline.windowCount in MediaBrowser and ExoPlayer.
Question:
What could I be missing? Is there a better way to retrieve the items in the current queue?
The text was updated successfully, but these errors were encountered: