Add playback info overlay to display codec, bitrate, and play method#5521
Open
johnpc wants to merge 2 commits intojellyfin:masterfrom
Open
Add playback info overlay to display codec, bitrate, and play method#5521johnpc wants to merge 2 commits intojellyfin:masterfrom
johnpc wants to merge 2 commits intojellyfin:masterfrom
Conversation
187fea0 to
defe261
Compare
Refactored to share PlaybackInfoContent composable between old and new players.
defe261 to
71ad48c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Changes
This adds a playback info button to the video player overlay that displays technical details about the currently playing media. When pressed, a popup appears showing the play method (Direct Play, Direct Stream, or Transcoding), container format, video stream details (codec, resolution, bitrate, HDR type), and audio stream details (codec, channels, bitrate, language). This is useful for troubleshooting playback issues and understanding how media is being delivered to the client.
The feature mirrors functionality already present in Jellyfin Web, Jellyfin Media Player, and the Jellyfin Android mobile app. The info button appears in the secondary actions row (bottom) of the playback controls, next to the existing Zoom button.
The implementation includes support for both the current video player and the new Compose-based video player.
Old Player
New Player (in progress rewrite)
Issues
Fixes #1637
Related: #5349 (previous attempt, closed by author)